Forum Replies Created
-
AuthorPosts
-
July 8, 2020 at 7:05 pm in reply to: Feature request (or maybe it exists allready): Masonry image gallery styling #1228953
Hi Jordan,
I know the full-width masonry gallery exists.
I fact, my question is about it.Unlike the portfolio / blog post masonry gallery it seems that I cannot force images to be shown as portrait, landscape or extra big by adding tags.
For anyone who is trying to accomplish this:
#av-burger-menu-ul:before {
content: “”;
background-image: url(http://www.yoururl.com/logo.png);
background-size: 100%;
background-repeat: no-repeat;
width: 300px;
height: 56px;
display: inline-block;
padding-bottom: 20px;
}@mike Yes issue is fixed.
Sorry, 2 mikes in here ;)
@jojoba007 yes i see the private message and I am responding to it.
Hi @Mike, this works fine.
Can the fix be implemented in a new enfold version so it is save to update?
Or otherwise maybe you can provide the files that we can put into the child theme we use?Hi, I would really like to receive the patch to implement it myself.
February 27, 2019 at 2:27 pm in reply to: Widget Enfold Mailchimp newsletter signup not work #1072281Hi @mike, thats great.
Could you share the patch online so we can apply it?February 26, 2019 at 9:57 am in reply to: Widget Enfold Mailchimp newsletter signup not work #1071689The mailchimp widget does not work with non-alb pages since the last enfold version.
Since the Woocommerce default page cannot use alb it does not show on any shopping category.February 25, 2019 at 10:43 am in reply to: Widget Enfold Mailchimp newsletter signup not work #1071199Adding shortcodes to the default woocommerce page does not enable the advanced layout editor.
Mailchimp widget will not show.February 19, 2019 at 1:51 pm in reply to: Widget Enfold Mailchimp newsletter signup not work #1068960No I mean that with the latest enfold and woocommerce the (enfold) mailchimp widget is not showing on woocommerce pages.
All other plugins are disabled.February 19, 2019 at 11:31 am in reply to: Widget Enfold Mailchimp newsletter signup not work #1068878Hi please note this is a real issue.
Also without using the Mailchimp for Woocommerce plugin.The mailchimp widget shows on normal pages but not on Woocommerce pages.
This happened since one of the last enfold updates.
It seems not related to woocommerce updates because it also happens with Woocommerce 3.5.1Use incognito mode.
You’re welcome.Registration of token (for us) only works in incognito mode.
Please share the solution when you have it.
We have the same.Solved. Thanks
Did not know this setting at all ..
Thanks for clarifing./enfold-child/shortcodes/portfolio.php shows my customization (shortcode buttons in portfolio grid)/
/enfold-child/shortcodes/portfolio/portfolio.php also shows the customization.So the portfolio.php is loaded.
But the portfolio nav is NOT loaded.
Also if I just delete portfolio.phpI was looking for the same and this one:
seems to work without the need to modify any code.
An easier, no need for file changes, way (for me) was:
On the page with the plugin shortcode add a div<div class="noLightbox noLightbox a fakeLightbox lightbox-added"> [shortcode from plugin] </div>
Same issue here.
Custom link # does not open submenu, http:// does.Please fix this bug, thanks :)
Hi could you please respond?
Hi @basilis,
I guess this answer is not intented for me?
Because i shared login info into the private content box.Any news on this?
See private content
March 10, 2017 at 12:32 pm in reply to: ACF field as sortable column in admin for portfolio's #758844This topic can be closed.
I have implemented “advanced admin columns” to accomplish this.January 12, 2017 at 10:46 am in reply to: 4.7.1 Failed Upgrade and Reauth problems – Can't stay logged into WordPress #732558I was able to “fix” this by disabling (renaming in ftp) 3 plugins: wordfence, stopbadbots and yoast seo.
After being able to log in i could enable wordfence and yoast seo again.
Stopbadbots does seem to be working with 4.7.1 in network mode.January 12, 2017 at 10:36 am in reply to: 4.7.1 Failed Upgrade and Reauth problems – Can't stay logged into WordPress #732556I also cannot login 2 sites running latest enfold and wordpress 4.7.1
Both are network sites.September 29, 2016 at 2:15 pm in reply to: Add text "from" to price of discounted products in WooCommerce #693108Edit: The following code is wrong because it changes all normal priced products also…
Nevermind I found it by trial and error:
// Edit from and to price for simple products add_filter('woocommerce_get_price_html', 'custom_price', 10, 2); function custom_price( $price, $product ) { $price = 'From: '; $price .= woocommerce_price($product->regular_price); $price .= ' - '; $price .= woocommerce_price($product->sale_price); return $price; }
- This reply was modified 8 years, 1 month ago by mikehenze.
September 29, 2016 at 2:05 pm in reply to: Add text "from" to price of discounted products in WooCommerce #693100Would it be possible to use the same for simpel products?
The current code only seems to work for Variable products. -
AuthorPosts