Filipe Costa
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Formatting Issue with Woocommerce 2.3.5Do you have other WooCommerce extras like WooCommerce Extra Product Sorting Options, WooCommerce Product Archive Customiser or WooCommerce Grid / List toggle?
If so go to settings and check that everything is OK because i had that issue after some settings disappeared.
Ok i think i got it, i just added the lines:
$jp = new Jetpack_Comments; remove_action('comment_form_before', array($jp, 'comment_form_before')); remove_action('comment_form_after', array($jp, 'comment_form_after'));
before the already existing:
comment_form( apply_filters( 'woocommerce_product_review_comment_form_args', $comment_form ) );
and now JetPack Comments doesn’t appear on product reviews.
However i think there is something wrong with the code, because if i disable Jetpack comments my tabs get all messed up and appear after product description…
Forum: Themes and Templates
In reply to: [Customizr] Language problemHi, thanks for the help, that worked!!
As soon as i have the pt_PT language done i will submit it to Customizr Developer ??
What an awesome theme!
Forum: Plugins
In reply to: [WooCommerce Payment Methods] Customize displayed methods on widgetOk i see i have to add
pf pf-paypal
to the extra classes.However i have several payment methods that do not automatically appear on the widget or on checkout it doesn’t show personalized icon.
On checkout and widget i only see BACS (pf-bank-transfer) but i also have MultiBanco (pf-multibanco) and COD (pf-cash-on-delivery witch to my understanding also includes pf-cash-on-pickup).
Can someone help?
Thanks
Sure! I just updated to the version released today and its fixed!!
Thanks and keep up the good work!
Forum: Plugins
In reply to: [WooCommerce Product Archive Customiser] Sold Out Badge+1!
A featured product badge would also be great
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Change CSS without affecting the pluginOK i think i got it:
ul.berocket_aapf_widget{
margin-bottom: 30px;I belive i can even change the margin to a negative value so that the space gets really small, because even if i add 0px it has space, can i have any problem doing that?
This however creates the problem that the last AAPF widget also have a very little space tom my other WC widgets… Any way i can fix that?
Thanks again!
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Change CSS without affecting the pluginHi, my website is still in construction, but i will provide a link latter when its finished!
That
html
did it, your awesome ??Can you help with the css for the widget that controls the space between the last filter option and the next filter label so i can reduce it? I can’t seem to find it…
OK thanks. Maybe adding and advanced settings to the widget allowing us to choose the filters to show and where to show them? ??
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Change CSS without affecting the pluginHi!
On my style.css child theme I added
.berocket_filter_slider.ui-widget-content .ui-slider-range, .berocket_filter_price_slider.ui-widget-content .ui-slider-range {
background: none repeat scroll 0px 0px #0088cc;
}To change the original price slider color from #000 to my color #0088cc but it does not work.
I also tried to change the margin from:
.berocket_aapf_widget-title {
margin-bottom: 5px;
font-size: 14px;
}to
.berocket_aapf_widget-title {
margin-bottom: 0px;
font-size: 14px;
}but nothing. If i change these values in Firebug or the default Firefox developer tools i can see the effect on my website, but if i upload them on style.css nothing happens.
I’m also trying to reduce the space between the filter labels, because its a lot of blank space, but i’m unable to see what i have to change.
Thanks again!
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Filters not showingHi! I just updated and i believe the issues are solved. I will do more testing and keep you updated, thank you very much!
One more thing, this update has removed subcategories from below category in widget advanced settings, if you can solve this in a future release, that would be great.
Another suggestion i have for the categories, i think it would be better if they all showed in advanced settings even if they aren’t populated. Because after we populate a category with products it wouldn’t be necessary to go to the widget and configure it again ??
Thanks and keep up the excellent work!
Forum: Themes and Templates
In reply to: [Customizr] Language problemHi again, my child theme languages are not working, can someone help?
If i add the languages to main theme it works, but not on child theme.
Thanks!Hi! My website is still in construction, but i can add this happens to me when searching for woocommerce products, the product pictures won’t appear next of the product, but if i disable “Load images on scroll” it works.
As long as i can see, on the demo site (https://demo.themesandco.com/) this also doesn’t work. Try to search for a woocommerce product like “Happy Ninja” and you will see that the results have no picture, but as long as i can see posts and pages have.
Thanks!
Hi, just installed latest 3.3.8 version but i have the same problem!
Thanks ??Hi, the first code i provided works, it was just the closing bracket that was missing, thanks!
However i’m unable to add more than one delivery method. Here is the line:
if ( in_array( ‘local_pickup’,’local_delivery’ , WC()->session->get( ‘chosen_shipping_methods’ ) ) )
To solve this i have duplicated the functions, one for
local_pickup
and one forlocal_delivery
. Maybe you can help about adding both delivery options on that line?The second function, to show only on checkout hiding on cart didn’t work, because the fee wasn’t being added even when i was on checkout. However i think i was able to do it:
function wc_pay4pay_hide_on_cart( $do_apply ) {
if ( is_cart() )
return false;
return $do_apply;
}
add_filter(‘woocommerce_pay4pay_apply’,’wc_pay4pay_hide_on_cart’);Its like your code, but instead of applying on checkout it just hides the fee on cart ??
Thanks a lot!! This is the only fee plugin for WooCommerce that allows me to apply a fee or discount, but disable it on specific delivery methods!