Ganga108
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Maker by dFactory] recurring event meta dataThank you for your help ! Its exacly this what i need .
Forum: Plugins
In reply to: [WooCommerce Products Per Page] Dont work with The Stormer ThemeHello,
Thank you for respone.Nope both solution have no effect; )
Forum: Plugins
In reply to: [WooCommerce Products Per Page] Dont work with The Stormer ThemeHello,
Thank you for your response, dropdown is okey, problem is when i select for example 24 per page, page still show 12 ( which i set in page builder module of my page, there is filed to set product displayed per page ) . So my problem is that when i pick from dropdown lets say 60 page still showing this what i pass in setting (in my case 12 )PS. This theme use custom page builder made my premiumcodeing to display different blocks on pages – like shop, text area , slider etc. I thkink problem is that plugin somehow cant modify this what i pass in setting of “Shop blocl”
Is there any walkaround which we can use ?
Forum: Plugins
In reply to: [Speed Contact Bar] fixed width of barHello again:)
i resolve this problem by useing this code :#scb-wrapper {
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
width: 1700px; }Forum: Plugins
In reply to: [Speed Contact Bar] fixed width of barThank you for response,
Yes i know css and i already tried use this code, problem is that i cant center this bar, whatever method i use bar is not relative to rest of content. I can be wrong but i think its cause this bar is not in a flow with rest of element’s so i simple cant position its relative or center it – Its always change position depending on visitor screen size.For example on my 11″ its looks good but if i change screen to 20″ bar move hard on left .
Any idea how can i fix it without writing my contact bar ? Basically i just want to place this bar on center of my boxed content without overflow.
You can see how it looks under this link Link
Will be gratefull for any kind of help,
cheers : )Forum: Plugins
In reply to: [Speed Contact Bar] fixed width of barThank you so much for fast response, yes ofcourse here is sc .
I have site with boxed layout, im trying to make contact bar have same width like rest of the page, i tried some manipulation with position absolute and relative but its looks different on each screen – i understand why it works like this – My question is it is possible to make it same size like my boxed website and act like his width is set on 100% ? Cause i have different background color and different bar color ??Here are sc with 2 different screen resolution
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 2.1.1. change add to cart in to single product pageHey did someone resolved this problem ? i need code which will redirect add to cart to product page i tryed to use :
/* make all products go to product page */
add_filter( ‘woocommerce_product_add_to_cart_url’, ‘woo_more_info_link’ );
function woo_more_info_link( $link ) {
global $product; // switches link in all cases, i.e. in plugins
$link = get_permalink( $product->id );
return $link;
}but it dont work ??