seprita
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Cannot update options (forms) of other widgesGreg, this is not a workaround, because same problem exists with 2.1.3 too. Problem appears after the WP 4.2.3 update, not after the Page Builder 2.1.4 update.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Cannot update options (forms) of other widgesIs there any news? I can’t modify my site content right now…
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Cannot update options (forms) of other widgesMisplon, thank You for the feedback!
With Enhanced Text widget doesn’t work options saving, text saving is working. After the page saving all Enhanced Text widgets options are selected.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Cannot update options (forms) of other widgesThis is definitely the Page Builder incompatibility issue with WordPress 4.2.3. I can’t save many plugin options (example Enhanced Text widget, Recent Posts Extended, Easy Facebook Likebox) after the WP 4.2.3 update. With WP 4.2.2 all was fine.
Forum: Plugins
In reply to: [WooCommerce Hide Checkout Shipping Address] PHP notice and other problemsNewest, of course.
Forum: Plugins
In reply to: [WooCommerce] Attribute label auto capitalizedThank You very much, lorro! Your solution is very simple and it works.
I didn’t know that pseudo element :first-letter exists (Y)
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Validation errors again after the last updateAfter the 6.x update Pinterest link have validation errors. “&” needs replaced with “& amp;” (without space). Simple HTML5 standard.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Version 2.1 problem/conflictAfter the extra research I can say it’s Collapse-Pro-Matic caused problem, so please ignore my issue.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Version 2.1 problem/conflict@wpyogi, sorry, I don’t want to act like a spammer, but it’s not my fault. After the pressing “Post” button nothing showed up and post will be visible 5-10 minutes later. Nothing is wrong with www.ads-software.com forum.
EDIT: This post appears 17 minutes later.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Version 2.1 problem/conflictUnfortynately Page Builder have conflict also with Collapse-Pro-Matic plugin (maybe with free Collapse-O-Matic too, I don’t know), even after the update to version 2.1.1. WP update page is totally messed up (screenshot).
If I refresh update page two times, problem is almost gone. If I access update page again after ca 1 minute wait, problem will cycle again.
I have talked with Collapse-Pro-Matic support and they said problem will occur only with active Page Builder plugin, they can’t reproduce same problem with different circumstances.
I can also give my test site access so you can examine problem yourself.
Sad to see that after the 2-3 months nothing is still changed… Major development started 3 weeks ago, but sadly we can’t touch any results.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] text widgets no longer aligning correctlyI changed little bit content tags and css values and now issue is gone.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] text widgets no longer aligning correctlyI tried to change .panel to .so-panel in my child-theme css, but issue is still there. If widget content is “float: left” or “float: right” content will be outside of widget area. With “float: none” no alignement issues. Same css working fine with 2.0.7.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] text widgets no longer aligning correctlyI agree, Page Builder 2.1 have some alignment issues. With 2.0.7 all is fine.
Forum: Plugins
In reply to: [Woocommerce Dropdown Cart] Some requests and suggestionsI’m not also coding expert, but after reasearching and reading WooCommerce documentation I have realized also point 3. sugestion myself.
Replaced following code in woocommerce-dropdown-cart.php in line 69
<?php echo sizeof( $woocommerce->cart->get_cart()) ?> <?php _e('items(s)', 'woocommerce-ddc') ?> - <?php echo $woocommerce->cart->get_cart_subtotal(); ?>
with this code:
<?php echo sprintf (_n( '%d item', '%d items', WC()->cart->cart_contents_count, 'woocommerce-ddc' ), WC()->cart->cart_contents_count ); ?> - <?php echo WC()->cart->get_cart_total(); ?>
I hope You will add these modifications to the next version.
Unfortunately I have not enough skills to realize point 2, but I hope You will add it Yourself.