calidriswl
Forum Replies Created
-
Hi,
I have the same problem.
On my site the correct images get loaded and displayed but change to the rong pictures after a few seconds.I too have deactivated the plug-in but a fix would be great to have.
Hi,
You were right. For some reason our theme added a .mobile class to the html tag and set it’s display attribute to none. We removed it and now everything works perfectly.
Thank you very much for your help!!
Hi,
This is the page where it happens: http://www.style-me.be/dev/galerie/
Forum: Plugins
In reply to: [Contact Form 7] Problems with reCAPTCHASorry for not responding earlier.
I’ve changed to using Google’s reCaptcha so there’s no more issue.Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Discount not in databaseThanks!!
It works perfectly 😀Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Discount not in databaseNothing yet
Forum: Hacks
In reply to: Edit category tableFound it after a long search and a little help from a friend.
Forum: Hacks
In reply to: Edit category tableI managed to solve part of my problem.
I got my extra column into the wp_term_taxonomy table:
add_actiononmanage_category_custom_column
And I can fill that column with the correct data from the database:$categories = get_terms( 'category', 'orderby=name&hide_empty=0' ); foreach($categories as $category) { if ($column_name == 'quantities' && $term_id == $category->term_id) { echo $category->quantities; } }I also managed to get a new form field on the new category and edit category pages so the user can set the quantities.
The only thing I can’t do is fill the column in the database if a new category gets made or if an existing one gets edited with the quantities the user gives me.