pa_esp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Woocommerce checkout page problemsHi Steven,
Brilliant! I’m glad it works okay ?? I’m very pleased I could help.
Cheers, Paul
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Woocommerce checkout page problems@allense2018 – Add the code I have shown to a CSS file. Here it is again:
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row { display: block; }
Hopefully this will solve your problem. If it doesn’t, reply to this post and I will have another look at my code. The authors may have changed their code since I last corrected this error.
Cheers, Paul
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Woocommerce checkout page problemsHi guys,
Thanks for your reply. Unfortunately the update doesn’t solve the problem. In fact the update removes Bootstrap row classes and uses Woocommerce responsive class instead (which is worse for me).
However, I worked out the problem. The reason that the checkout page looked messy was that there was this CSS style:
.form-row { display: flex; }
Flexbox was messing up the form so I added the following to my child theme CSS:
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row { display: block; }
This has solved my problem.
Cheers!
- This reply was modified 6 years, 5 months ago by pa_esp.
Yes, you must be correct. I’m sorry for my mistake.
Looking back at some old database backups I think I was using your plugin alongside a login widget plugin so members could log into the website on the front end to view restricted content, but on the login form (via the other plugin) it also allowed them to visit their profile to change their password, or in the case of an editor, to write posts, etc.
Sorry for the confusion. I have just updated the website and removed some old plugins that have been removed from the WordPress repository and I guess that the login form plugin was one of them. When I saw that Restrict Contact had a login facility via a shortcode I got confused.
I will rethink how to allow members to login, view restricted content AND view their profile.
You can consider this question resolved, and if necessary to avoid confusion, delete the question. Thank you for your quick answer. 10 out of 10 for the support you’ve given!
Hi,
I found the answer to this problem here: https://redmine.ioerror.us/issues/14
The answer appears to be: “To resolve this, enable the “Offsite Forms” option in Bad Behavior’s settings.”
I have not been able to check this myself yet but please try it. If it works (or doesn’t) please add your result here so that others may find the answer too!
Cheers, Paul
I agree with you completely. The changes made go against every UI design rule going.
It was fine before. It worked. One click and I could add a username to permanently block. One click and I could permanently block an IP address. Both of these simple actions now require 2 or 3 clicks (or more). This is the opposite of good UI design.
Lets hope they haven’t ruined the quality of the security processes at the same time.
Forum: Fixing WordPress
In reply to: Cannot add new text widgets in WP 4.9+1 I have this problem too. Also all existing text widgets are now broken after updating to WordPress 4.9
I have also discovered to my annoyance that this has broken the widgets on the front end of my website (text widgets which had Amazon advert code in).
I am using Chrome on a Mac. I will have to revert back to WordPress 4.8
- This reply was modified 7 years ago by pa_esp. Reason: Further errors discovered
Forum: Plugins
In reply to: [Product Slider for WooCommerce by PickPlugins] “No Product to Slide”Hi @pickplugins,
Many thanks for your reply. You’ve a great plugin and you’re obviously working hard to combat the issues caused by major upgrades to WooCommerce 3.0+.
Keep up the good work ??
Cheers, Paul
Forum: Plugins
In reply to: [Product Slider for WooCommerce by PickPlugins] “No Product to Slide”Hello,
I had the same problem too and I am glad that I found this web page. Can the devs please ensure that people know of this ‘problem’ and that they may need to choose the “no check” boxes on Query Product tab of their slider.
Cheers, Paul
I’m glad someone could point me to this. Using the Blocked IPs page is an essential part of my security protocol. I wish it hadn’t been moved because it was in a handy place, but hey – at least it hasn’t been removed completely!
Cheers, Paul
Hi there,
I’ve just installed Foo Gallery (v.1.2.15) however the no link option does not appear to be working for me.
I have chosen:
Gallery Template > Image Viewer
Thumbnail Link > Not linked
Hover Effect Type > NoneWhen you hover over the image gallery in the front end, the image still darkens and the default magnifying glass with + sign appears. However the image is not clickable and does not open up in a light box.
For some reason I cannot get it to work like your demo that you have linked above.
I gave up and now allow the images to open up in a light box.
Great Gallery plugin in though – probably the best out there!
This happened to me too, however if you adjust the text on the FooGallery Settings > Language tab it works okay.
It doesn’t seem to work via the individual album setting.
Hope this helps!
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Pagination in product breadcrum+1 on this
I have the same problem where the plugin automatically add the words “Page 1” on the end of the breadcrumb on an individual product page.
Besides this it’s a great plugin. If this can be fixed it’ll perfect!
Forum: Themes and Templates
In reply to: [Storefront] Home page repeats itself on the same page@aeve – You’re welcome! ??
If anyone else also has the problem with Boutique where any content added to your home page is repeated, please see this topic where the answer is detailed:
https://www.ads-software.com/support/topic/storefront-show-only-main-content?replies=5
In summary, place the following code into the Boutique child theme functions.php file. Adding this code removes the duplicated home page content. This way you don’t need to use a plugin.
add_action( 'init', 'jk_edit_storefront_homepage' ); function jk_edit_storefront_homepage() { remove_action( 'homepage', 'storefront_homepage_content', 10 ); //remove_action( 'homepage', 'storefront_product_categories', 20 ); //remove_action( 'homepage', 'storefront_recent_products', 30 ); //remove_action( 'homepage', 'storefront_featured_products', 40 ); //remove_action( 'homepage', 'storefront_popular_products', 50 ); //remove_action( 'homepage', 'storefront_on_sale_products', 60 ); }
IMHO this really needs to be corrected in a future update of the theme. Nice theme though!