ctuxboy
Forum Replies Created
-
Find it! Prefix with ‘usermeta’:
{usermeta:phone_number}
…Forum: Plugins
In reply to: [WooCommerce] Customize product template loopHi @m155y5 ,
Thanks for your answer.
Found a solution:
https://wordpress.stackexchange.com/questions/304776/how-to-override-woocommerce-specific-loop-or-archive-product-phpOn this page explains how at the_content(),… in your theme and so on.
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyHi,
I haven’t tested anymore at this moment.
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyOkay ??
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyYes, i do this.
At the moment, move a copy to my laptop for testing and looking inside the database.
Hope find the problem soon.Thanks for the useful links ??
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyHi @etiennep ,
Thanks for your help!
Try this plugin in the past, but doesn’t work.Very strange.
Or there is something wrong in the WP database after migrate the webshop.
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyHi @etiennep ,
No ??
At the moment no solution.Yes, the first rows sorted good, but if you scroll down, then you see, it started agaign from A,B,C,…
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyYes, and not handy for my client.
At the moment, adding this snippet in functions.php:
function category_merken( $query ) { if ( !is_admin() AND is_tax( 'merken' ) AND $query->is_main_query() ) { $query->set('orderby', 'name'); $query->set('order', 'ASC'); } } add_action( 'pre_get_posts', 'category_merken' );
But doesn’t work.
- This reply was modified 5 years, 6 months ago by ctuxboy.
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyHi @serafinnyc ,
Yes, i try a plugin, but manual reorder the taxonomies is no option.
The reason: the webshop has 100+ categories and it is not handy do this manual every time add/delete categories.
I think it is possible with this function/hook:pre_get_posts
Forum: Plugins
In reply to: [WooCommerce] Sorting subcategories alphabeticallyHello,
I think a better way, is adding code to the functions.php.
Found this interested page about pre_get_posts:
https://codex.www.ads-software.com/Plugin_API/Action_Reference/pre_get_postsForum: Reviews
In reply to: [Custom Taxonomy Order] Great support!Hello, i have a similar issue.
Try sorting a subcategory alpabetical, but doesn’t work.Forum: Plugins
In reply to: [WooCommerce] Reorder single product contentOK
Forum: Plugins
In reply to: [WooCommerce] Reorder single product contentI found that the price, has priority 25:
See screenshotSo change the code:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 25 );
But doesn’t work.
Forum: Plugins
In reply to: [Crelly Slider] Different FontsHi Fabio,
Thanks for your answer.
Thats a good option with this plugin.
After installed the plugin, i know how it works with css.Regards,
ChristopheForum: Plugins
In reply to: [Crelly Slider] Top of pageSo Fabio found the solution.
The problem was not the slider but the section from the Divi theme:The solution: adding this code in the style.css:
.et_pb_fullwidth_code { padding-top: 0 !important; }