Prospekto
Forum Replies Created
-
I had the exact same problem…
Here is the workaround.
There is a limit to 200 variations.
You can change this limit (to 300 for example) by inserting the snippet below in your function.php// Set a new limit for variations swatches
add_filter( ‘woocommerce_ajax_variation_threshold’, ‘woocommerce_increase_variation_limits’, 100, 2 );
function woocommerce_increase_variation_limits() {
return 300;
}Thanks
Hi,
I finally managed to find a way to achieve what I needed. But WP coders will probably laugh about it! I am sure there is a better way I guess.
I have added the following in function.php to place the shortcode [author_posts] in a widget.
function author_posts_shortcode(){ global $post; $post_id = $post->ID; $author_name = get_the_author($post_id); $author = get_the_author_meta( 'ID' ); $post_author = "[display-posts wrapper_class=\"author-list\" post_type=\"job_listing\" author_id=\"$author\" posts_per_page=\"5\"]"; echo '<h2 class="widget_sidebar_title">Posted by</h2>'; echo '<p class="author">'; echo $author_name; echo '</p>'; echo do_shortcode( $post_author ); } add_shortcode('author_posts','author_posts_shortcode');
Forum: Plugins
In reply to: [Nextend Twitter Connect] WP Requests Email Address on RedirectHi,
1/ Any news about this?
I have installed the plugin today and I am still “redirected to the login page of my site with the instructions to enter my email address and a password will be sent to me”.On Apps Twitter –> Application Settings & Access Token = Access Level set to Read, write, and direct messages
In additional permissions –> Request email addresses from users : checked.Any way to avoid the “enter your email” step?
2/ An other point.
The image profile generates mixed content. I have “WordPress Force HTTPS” installed. Everything fine with Nextend Google & FB Connect.Many thanks
Forum: Plugins
In reply to: [Product Brands For WooCommerce] showing only the brand names and linksHi Jaffer,
I have visited your site and it is exactly what I would like to do.
I mean, getting the brand name below the price in the “new in” section.
I would like to show the brand name below the title text product in the “shop exclusive design” section in this page : https://affluency.io/template-homepage/
Apparently you said it is very easy! I am probably doing something wrong…
Any tips ?
Best,
Philippe
Forum: Plugins
In reply to: [Polylang] Strings doesn't update in front-endOk I will. Thanks
Forum: Plugins
In reply to: [Polylang] Strings doesn't update in front-endHi
Thanks for your answer.
I still have a problem but i found the way to get what I wanted.
What I do :
Default language (ENGLISH) > I fill the content in FRENCH in the theme options > click on FRENCH language in the top bar –> so I get my french content managed from the theme options
Then I go back to the default language (ENGLISH) in the theme option and fill the content in English –> so I get my english contentThe problem :
I can not update the french content in the theme options. Nothing happens.
Then I tried to change the fr content directly in the database with phpmyadmin in “Avada_Option_fr” –> All the content come back to the default language (ENGLISH) ?WP version : 4.2.2
Avada version : 3.7.3My problem is not a big one as the content from the theme option won’t change. It is just contact infos, with phone numbers, language switcher and a link to an other website…
Thanks
Forum: Plugins
In reply to: [Polylang] Strings doesn't update in front-endThanks for your answer.
Yes I checked “The language is set from the directory name in pretty permalinks” option too = same problem
I am lost.
I don’t know what else to try !