Forum Replies Created
-
AuthorPosts
-
Hey ButlerWeb!
Please avoid duplicated post.
Please remove the current shop page as Shop Page on Woocommerce > Settings > Product > Product Archive / Shop Page settings. Edit the shop page, switch to advance layout builder then add the Product Grid element under Plugin Additions panel.
Cheers!
IsmaelHey ButlerWeb!
Thank you for using Enfold.
Please remove the current shop page as Shop Page on Woocommerce > Settings > Product > Product Archive / Shop Page settings. Edit the shop page, switch to advance layout builder then add the Product Grid element under Plugin Additions panel.
Cheers!
IsmaelHi!
Thank you for using Enfold.
Have you tried adding the video on a code block? Please refer to this link: https://kriesi.at/support/topic/youtube-suggested-videos/
Regards,
IsmaelHi!
Yes, that is quite possible but the task falls beyond the scope of support. Please find a plugin or hire someone to create it for you. Please visit Envato Studio or Werkpress for further customization.
Best regards,
IsmaelHey Effektid!
Thank you for using Enfold.
If you’re using the advance layout builder for portfolio items then yes, you need to add the image again. If you’re using the default editor, it should automatically display the featured image. A more “fancy” way of presenting the products imo that is available will be to add it using the masonry element.
Cheers!
IsmaelHey!
Thank you for using Enfold.
Did you add the link using the text block? You can use this on Quick CSS or custom.css:
.avia_textblock a { font-size: 20px; font-weight: bold; }Use this to enlarge the text all over the site:
body, body p { font-size: 16px; }Regards,
IsmaelHi!
Edit the app options first then get the code. You need to use both codes in order for the app to work.
Best regards,
IsmaelHey fri_z!
Thank you for using Enfold.
Unfortunately, it’s not possible to hide the elements at the moment, you either have to remove it entirely or switch the builder to debug mode in order to get the actual shortcode below the advance layout builder.
Cheers!
IsmaelHey Effektid!
Thank you for visiting the support forum.
Use this on Quick CSS or custom.css to disable the image and title link:
#top .fullsize .template-blog .post-title a, .big-preview.single-big a { pointer-events: none; }Best regards,
IsmaelHey Wils1234!
Thank you for using Enfold.
Please use this on functions.php:
add_filter('avf_ajax_search_label_names','avia_change_pt_label_name', 10, 1); function avia_change_pt_label_name($label) { if($label == 'Portfolio Items') $label = 'Photo Items'; return $label; }Cheers!
IsmaelHey!
Thank you for the update.
Theme update should be done regularly because it will fix minor issues like this one and keep you up to date with the latest features of the theme. Anyway, I checked the website again and the mobile menu is working just fine. Please remove browser cache then reload the page a few times.
Best regards,
IsmaelHey fundance!
Thank you for using Enfold.
What do you mean by “return button? Can you please elaborate? A screenshot of the issue will help.
Cheers!
IsmaelHey davisar!
Thank you for using Enfold.
The masonry element will always stretched full width even if you don’t place it inside a color section. Please edit the masonry element then play around with the Size Settings. The Flexible Masonry will give you up to 6 columns depends on the screen size.
Cheers!
IsmaelHey Gabster!
Thank you for using Enfold.
You can add this on functions.php to add the social share section at the bottom of the portfolio items:
add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2); function avia_add_social_toolbar($id = "", $context = "") { if($context == "page" || $context == "single-portfolio") avia_social_share_links(); } add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { $content .= avia_social_share_links(array(), false); $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; return $content; }Regards,
IsmaelHi Alexoidea!
Thank you for visiting the support forum.
You can create a temporary post to generate the gallery shortcode using the shortcode wand. Copy the shortcode then place it on the promo box content. Make sure that you paste it on the Text mode of the editor.
Regards,
IsmaelAugust 20, 2014 at 5:31 am in reply to: Have a separate colored background in each layout element #306609Hey svreatt!
Thank you for using the theme.
It is actually possible but we need to see the actual page with the layouts to look for the proper css selector. The css will probably look like this:
.flex_column.av_two_fifth.first.avia-builder-el-0.el_before_av_three_fifth.avia-builder-el-first { background: red; } .flex_column.av_three_fifth.avia-builder-el-2.el_after_av_two_fifth.el_before_av_section.avia-builder-el-last { background: blue; }A screenshot of what you’re trying to do will help. You can use imgur, dropbox etc for the screenshot.
Regards,
IsmaelHey gregdickson!
Thank you for using Enfold.
Please go to Enfold > Sidebar Layout. Set the Sidebar on Archive Pages to “no sidebar”.
Regards,
IsmaelAugust 20, 2014 at 5:24 am in reply to: Custom sticky footer navigation isn't displaying properly #306607Hey!
I’m sorry but I thought this is supposed to be a sticky footer navigation? What’s up with the image with the “The Family” text? Please let us know once the site is live. We would like to check it.
Cheers!
IsmaelHey crawford13!
Thank you for using Enfold.
Regretfully, this particular request is beyond the scope of support and is not a theme related issue. You might need to use plugins such as Contact Form 7 or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.
Regards,
IsmaelHey InitiativeNeuland!
Thank you for using Enfold.
You can edit config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 386:
$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>"; $output .= "</div>";Replace it with:
$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time><div class='slide-meta-del'>/</div>"; $output .= "<div class='slide-meta-author' $markup>" .ucfirst(get_the_author())."</time>"; $output .= "</div>";Cheers!
IsmaelHey!
Thank you for the update.
Insert a color section then place all galleries inside this section. Apply an id to it using the For Developers: Section ID field. Let’s use “gallery-section” for example. Add this on functions.php:
function gallery_lightbox() { ?> <script type="text/javascript"> jQuery(window).load(function(){ jQuery('#gallery-section').each(function() { // the containers for all your galleries jQuery(this).magnificPopup({ delegate: 'a', // the selector for gallery item type: 'image', gallery: { enabled:true } }); }); }); </script> <?php } add_action('wp_head', 'gallery_lightbox');There’s a catch to this, you need to have at least two images on a single gallery.
Regards,
IsmaelAugust 20, 2014 at 4:47 am in reply to: Can the following be done on client site using Enfold Theme #306597Hey!
Please edit the Blog Posts element then choose Single Author, Big preview pic blog style. Add this on Quick CSS or custom.css:
.big-preview.single-big { width: 30%; float: left; clear: both; margin-right: 3%; } .entry-content-wrapper.clearfix.standard-content { width: 67%; float: right; }Please visit Envato Studio or Werkpress for further customization.
Regards,
IsmaelHi!
Thank you for the info.
All plugins are deactivated but they are still present on the wp dashboard. Please go to wp-content/plugins folder then rename all plugins folder. Test the advance layout builder again.
Regards,
IsmaelAugust 20, 2014 at 4:36 am in reply to: Issue/Bug :: Predefined Color Scheme not carried over when using Import Settings #306595Hi Dan!
Thank you for using the Enfold theme.
We tested this on our installation and the predefined color schemes along with the custom color changes are imported properly. Please try to deactivate all plugins then test it again.
Best regards,
IsmaelHi jade41682!
Thank you for using Enfold.
When you upload a logo, make sure that you select the Fullsize thumbnail size before you use the image as logo. Go to to Enfold > Header Layout > Header layout panel. Look for the Header Size then select custom pixel value. Change the height of the header, this will automatically adjust the height of the logo.
Regards,
IsmaelHey denis-lvov!
Thank you for using Enfold.
Unfortunately, this is not possible and is beyond the scope of support. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.
Anyway, it is possible to show html codes on the Ajax Portfolio Preview Settings. Look for the Display Preview Images then choose the last option. Add the video code on the Add Preview Text editor.
Regards,
IsmaelHi!
Sure thing. Thank you for the kind words. Enjoy the theme! :)
Best regards,
IsmaelAugust 19, 2014 at 6:04 am in reply to: On Submenu selected: Do not have a blue line under menu #306108Hi!
Thank you for the update.
The answer is “Yes” to both questions. In order to migrate the theme successfully and leave the database intact, please use this plugin: http://wordpress.org/plugins/wp-migrate-db/
Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:
http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684Also, make use of the Import/Export panel to save and restore the theme options like font settings, Quick CSS codes etc.
Regards,
IsmaelAugust 19, 2014 at 6:02 am in reply to: Can the following be done on client site using Enfold Theme #306106Hey Marcelo!
Thank you for choosing Enfold.
Yes, the layout is possible but you need some css fixes. Edit the home page using the advance layout builder. Make use of the column layouts to separate the text and the subscribe form. Add the Blog Posts element if you want to show the blog. Again, the column layouts will be pretty useful on this setup. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
Thanks!Regards,
Ismael -
AuthorPosts
