mariaarty
Forum Replies Created
-
Forum: Plugins
In reply to: [Slideshow] pictures doesn't show it keeps loadingHi Stefan,
can you please delete this topic?
Forum: Plugins
In reply to: [WooCommerce] No products found which match your selection.i updated my theme and it worked with me, i think it is a theme issue not the pluggin
Forum: Plugins
In reply to: [Attachments] Where is the "The Loop" file?got it, thanks
me too, i can’t see the gallery tab
no i couldn’t find where to ask them and i don’t know if it is a theme issue or a plugin issue i think it was all good till i upgraded the wordpress from 3.5 to 3.5.1 but i am not quit sure
Forum: Plugins
In reply to: [WooCommerce] Trying to remove sidebar from all Woo commerce Pagestry writing this code in the css theme editor
.woocommerce #sidebar{display:none}Forum: Plugins
In reply to: [Slideshow] pictures doesn't show it keeps loadingi had the slider with the woocommerce and it worked before withe the last version of the slideshow plugin but i don’t have it, so i guess i will wait for the new version, thanks
Forum: Plugins
In reply to: [Slideshow] pictures doesn't show it keeps loadingit is under development, but i will remove it for a moment
it is https://www.bigbosspainting.co.uk/showroom/Forum: Plugins
In reply to: [WooCommerce] Remove Sidebar from product Pagethere is a problem with the sidebar in the product pages they show under the products not on the side like it should be i had this problem and i finally found the fix
There’s a clear div that is messing up with the layout. Please try this on your custom.css.container .clear { clear: none;}
or if you wanted to remove the sidebar at all from these pages then write this instead:
.woocommerce #sidebar{display:none;}
both worked for me, i hope they work for you
Forum: Plugins
In reply to: [WooCommerce] The sidebar getting below the content of the plugin pagesi had this problem and i finally found the fix
There’s a clear div that is messing up with the layout. Please try this on your custom.css.container .clear { clear: none;}
or if you wanted to remove the sidebar at all from these pages then write this instead:
.woocommerce #sidebar{display:none;}
both worked for me, i hope they work for you
i down graded to wordpress 3.4.2, everything works fine with me now
hope they fix that error soonForum: Plugins
In reply to: [WooCommerce] moving the product sorting above the productsstill doesn’t remove it ??
Forum: Plugins
In reply to: [WooCommerce] moving the product sorting above the productsif ( ! function_exists( ‘woocommerce_catalog_ordering’ ) ) {
/**
* Output the product sorting options.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_catalog_ordering() {
if ( ! isset( $_SESSION[‘orderby’] ) )
$_SESSION[‘orderby’] = apply_filters( ‘woocommerce_default_catalog_orderby’, get_option( ‘woocommerce_default_catalog_orderby’ ) );
woocommerce_get_template( ‘loop/sorting.php’ );
}
}this is the code in the woocommerce-template.php
i don’t know how to stop showing this sorting, this code doesn’t remove the sorting, the add_action works but the remove doesn’tso any ideas…?
Forum: Plugins
In reply to: [WooCommerce] moving the product sorting above the productshey guys i would really love to get red of the bottom sorting, any help….
also does anybody knows how to remove this sorting from the category pages, i only have 2 categories and i don’t need the sorting there, and diffenetly not 2 ??
any help, thanks
Forum: Plugins
In reply to: [WooCommerce] moving the product sorting above the productsi have added this code in the woocommerce-template.php
/**
* Replace WooCommerce Default Pagination with WP-PageNavi Pagination
*
*/
remove_action(‘woocommerce_pagination’, ‘woocommerce_pagination’, 10);
function woocommerce_pagination() {
wp_pagenavi();
}
add_action( ‘woocommerce_pagination’, ‘woocommerce_pagination’, 10);could this be why it doesn’t remove the one under the page?
and i tried to edit in the archive-product.php, but nothing really happens, thanks for your help…