fcarlini
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Homepage Pop-up] window positionFrom what I can see, I think you’re latest update 1.2.4 fixed it.
It wasn’t a cache plugin problem as this is on a development site and we don’t put that kind of plugin on until a project is finished.
Thanks for the update.
Forum: Plugins
In reply to: [Homepage Pop-up] window positionHi,
So I updated to 1.2.3 and now the plugin is broken. It has moved it the pop to below my Footer.
Was working fine in version 1.2
Forum: Themes and Templates
In reply to: [Quark] Custom Post Type Archive PagesSo that’s the thing. I did that for the archive, and it’s not working. It brings up the regular post archive.
I’ve done it multiple times checking everything with no positive results.
Forum: Plugins
In reply to: [WooCommerce] Ordering Products Alphabetically When DisplayedThis is resolved. Code is above.
Forum: Plugins
In reply to: [WooCommerce] Ordering Products Alphabetically When DisplayedSolved this myself. If someone needs the answer here it is below
/** * This code orders the catalog by either title or date **/ add_filter('woocommerce_default_catalog_orderby', 'my_custom_default_catalog_orderby'); function my_custom_default_catalog_orderby() { return 'title'; // Can also use title and date }
Viewing 5 replies - 1 through 5 (of 5 total)