Discussion on Artday - Creative Artist WordPress Shop

Discussion on Artday - Creative Artist WordPress Shop

Cart 2,515 sales
Well Documented

WossThemes supports this item

Supported

1800 comments found.

Hello,

Have 1 question. How can I load my instagram profile in the bottom of my page? It doesn’t show up when I enter my instagram user name in the “ArtDay instagram feed widget”

Hope to hear from you soon.

Martijn

Hi,

you can use any 3-rd party plugin. Instagram widget included with the theme don’t work anymore due to new instagram changes and will be deleted at all from the theme in one of the next theme updates.

Regards

Hi I change the css in my footer, like this

.ws-footer{ padding-top: 20px; padding-bottom: 0px; }

BUT the footer is again too much heigh bottom. I am looking for solution for 2 days.

Could you help me ? regards

Hi,

you asked for solution via email, we already replied your email.

Regards

Hi,

I would like to make a modification in the theme. When a product is out of stock, I would like the price doesn’t appear in the single product and under the product thumbnail. How should I do it ?

Regards

Hi,

it’s more of a customization request and it’s beyond of marketplace free support.

Regards

I’d like to see if it’s possible to use Shopify instead of WooCommerce for my ArtDay Theme WP Site

Hi,

unfortunately you can’t install wordpress theme to shopify.

Regards

Hi

In woocommerce How do I change the “out of stock” tag to “Sold” (vendu in French )? No doubt css, but which css to put and where? Thanks for your help

Hi,

try to use this snippet


add_filter('woocommerce_get_availability_text', 'artday_change_soldout', 10, 2 );
function artday_change_soldout ( $text, $product) {
       if ( !$product->is_in_stock() ) {
              $text = '<div class="">Sold out</div>';
       }
       return $text;
}

Regards

Thanks it’s perfect !

Hi About social media in Woocommerce product, I would like change “share” by “partager” (in French). How can we change this word ? Regards

But I would like change just few words, where can I change “share” ?

These are default woocommerce core files. So you can change them only manually.

Regards

Thanks

In which woocommerce file can I make the change ?

Following up to email sent to support. We are officially live https://www.joannadole.com/ and I was notified yesterday that when you click on any of the content, NOT in woocommerce, the content isn’t loading. So the content in the portfolio loads, but when you click on an image, the error message is “The requested content can not be loaded. Try again later.”

Hi,

please send an email to support@wossthemes.com our developers will help you for sure as soon as they can.

Regards

Hi

How to protect photos so that they are not saved or copied?

Regards

Emilie

Hi,

you can use some additional script or plugin from wordpress repository.

Regards

Hi

How can I change the height of the footer ? How can I change the size of social media which are on the footer ? I adjusted their size to huge but they appear small

Thanks for your help

Snippet you sent change width of the element, but you want to change height as I understand. So change the width to height it will solve the issue.

Regards

I’ m sorry, I only change Heigh but the footer is not responsive !! Can I send you an screenshot ? regards

Yes sure, you can send it via email.

Regards

Hello, Recently i have purchased the theme “ArtDay”, following the guide, i have successfully installed WordPress, while inserting the theme i am getting the message “The link you followed has expired”. I searched for a solution online but didn’t find anything. Is it possible to resend the link or a new one. Thank your for helping to solve this problem.

Hi,

will be much better to have your wordpress credentials, so send please an email to us, we’ll be glad to help you.

Regards

Really happy with the theme and ease of migration. All is going well so far with the exception of the journal page image. Under artday>blog>parallax header, the image is set but not appearing. However, the blog text does. On the page, layout is set to default.

Can you help me with what I am missing?

Hi,

we just replied your email ;)

Regards

Ran into a problem/error from jetpack and had to restore a back up. I lost changes made to correct the problem with the header on the blog and shop pages. Could you please help again? Thank you.

Hello, I am looking for a wordpress theme that would act as a shop for my wall art shop. I would kindly like to know if there was a way on this theme to combine different products, say 5 different products to be bought together.

Hi,

out of the box theme does not contain such functionality out of the box. You’ll not find themes with such functionality here on Themeforest. It’s more of a customization request. You’ll need to add some extra features to default woocommerce functionality. You can do so manually or with some plugins.

If you want you can contact us and our developers will help you with customization or at least with an advice. Just drop a line to support@wossthemes.com

Regards

how can I change the font style in the theme? The theme is so limited and there are no new upgrades for recent changes on plugins.

Could you help me please thank you

Hi,

This feature is included with the theme. You can change font styles from theme options page.

Regards

there is no theme options on my menu bar

Make sure you activated all required plugins. After that you’ll see Artday tab in your dashboard.

Regards

Hi! I tried installing the theme into my wordpress website but it is saying” The package could not be installed. The theme is missing the style.css stylesheet.” could you help?

Hi,

make sure you upload small artday.zip file not entire package you downloaded from Themeforest.

Regards

Greetings. After purchasing the theme. I am having trouble uploading the necessary files as my server is saying the upload is too large. Do you have any suggestions?

Hi,

you can upload the theme through FTP, it’s a simples way. Second way is to contact you hosting provider and ask them to enlarge max upload size.

Regards

Thanks! We had to hand copy the demo content into the Themes\artday folder. Not sure if that caused this or not. We get this error whenever you click on an internal page.

Notice: Trying to access array offset on value of type bool in /var/www/vhosts/annieartbyannbrownthomason-0der20tc0.hostgrid.live/httpdocs/wordpress/wp-content/themes/artday/archive.php on line 25

Hi,

Seems that some of your files are stripped. Well you need to reinstall the theme and all the plugins once again. Sometimes it can be due to filezilla FTP client. Try to upload the files directly from admin panel or to use another FTP client. It should solve the issue.

Also you can send an email to our support. Our developers for sure will help you. Just drop a line to support@wossthemes.com

Regards

Hi How to translate the “load more” button I went to the plugins folder, then /woss-shortcodes/woss-shortcodes.php lines 178 changed load more to french and it doesn’t work

The change must be done in the child theme?

regards

Emilie

Hi,

you can translate from woss-shortcodes plugin. Don’t forget to clear the cache to see changes.

Regards

Hi,

Thanks but where I change the name, which line ? MOREOVER, must I copy this file and put it in the child theme , Thanks

/ Load more button on blog page if(!function_exists(‘woss_load_more_blog_button’)){ function woss_load_more_blog_button(){ global $wp_query; if ( $wp_query->max_num_pages > 1 ) : }

wp_enqueue_script( 'artday_loadmore', get_template_directory_uri() . '/assets/js/loadmore.js', array('jquery') );    ?>
    <script>
        var ajaxurl = '<?php echo esc_url(site_url()) ?>/wp-admin/admin-ajax.php';
        var true_posts = '<?php echo serialize($wp_query->query_vars); ?>';
        var current_page = <?php echo (get_query_var('paged')) ? get_query_var('paged') : 1; ?>;
        var max_pages = '<?php echo $wp_query->max_num_pages; ?>';
    </script>
<?php esc_html_e('Load more', 'artday'); ?>
<?php endif;

Will be much better if you’ll send an email to us, it will be easier for us and faster for you to answer.

Regards

I have outdated WooCommerce files and WPBakery page builder. Please advise how to update. Thanks…

You can download it from your account, detailed instructions you can find in theme documentation.

Regards

Before I go through this effort, please confirm it includes WPBakery version 6.8

Latest version isn’t included yet. If you want just to update this plugin then you can request it via email.

Regards

I bought and installed your theme and I have big problems

Unable to install your demo (I would like to have the same presentation as on Themeforest); I imported the artday-demo-data.xml file. no change, I still have the same presentation and the demo is not displayed

Unable to update WP plugins WPBakery Page Builder and Slider Revolution. I uninstalled and reinstalled them, no change

I also sent you an email at support@wossthemes.com Can you help me, I’m lost! Best regards

Emilie

Hi,

we’ll reply to your email as soon as we can.

Regards

I failed to import the demo data & have the showed DEMO of the theme.. I need support please..

Hi,

send please an email to us, we’ll be glad to help you as soon as we can. You can do so through form on our profile page or directly to support@wossthemes.com

Regards

I have sent an email, I need a refund please..

We just replied your email, so let’s continue our conversation there.

Regards

Price is for life time, on one website right?

Hi,

yes you get the theme for lifetime but following the marketplace rules support is just for 6 or 12 months.

Regards

Thank you

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey