Forum Replies Created
-
AuthorPosts
-
February 18, 2015 at 10:13 am in reply to: Duplicate posts even with "Do not allow duplicates" / Offset # set automatically #397996
Hey!
I think you have to purge the plugin cache. Also, it looks like the site is subscribed to MAXCDN. Purge the cache there. You can update the theme files via FTP: http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
Cheers!
IsmaelHi alex55!
Thank you for using Enfold.
You can create your own product template file or use this on functions.php:
add_action('wp_footer', 'ava_product_order'); function ava_product_order(){ ?> <script> (function($){ var desc = $("div[itemprop='description']").detach(); $(desc).insertAfter("div.product .product_title"); })(jQuery); </script> <?php }
Regards,
IsmaelFebruary 18, 2015 at 9:46 am in reply to: Is it possible to change the WooCommerce image pulled by Product List? #397989Hi!
1.) You can follow the solution provided here: https://kriesi.at/support/topic/best-way-to-add-image-sizes/#post-351286
2.) Add this to the child theme’s functions.php:
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
Create a folder called shortcodes. Place the modified shortcode file inside.
Best regards,
IsmaelFebruary 17, 2015 at 12:55 pm in reply to: Uncaught SyntaxError on avia.js, shortcodes.js & jquery.js #397424Hi itsmereal!
Thank you for using Enfold.
I checked the site but I don’t see any errors. Website looks nice.
Regards,
IsmaelHi rpl_admin!
Thank you for using Enfold.
Logo looks fine on screens less than 768px except for the vertical alignment which you can fix by using this on the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive .logo a { position: relative; top: 0; }}
Cheers!
IsmaelHey Slade!
Thank you for using Enfold.
Refer to Yigit’s answer here: https://kriesi.at/support/topic/pages-with-a-different-header-image/#post-360847
Cheers!
IsmaelHey!
We didn’t change the last color section id so that you can compare them. Looks like Rikard changed it for you.
Cheers!
IsmaelHi!
Edit the header.php file. Look for that code then place the addthis share button code below. If you review the thread, you can place the button code directly on template files: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header/#post-135671
<!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a> <a class="addthis_button_tweet"></a> <a class="addthis_button_pinterest_pinit"></a> <a class="addthis_counter addthis_pill_style"></a> </div> <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script> <!-- AddThis Button END -->
You need to use your own addthis code.
Best regards,
IsmaelFebruary 17, 2015 at 12:38 pm in reply to: Mash Between Masonry Blog with Blog Post Grid Layout #397414Hey!
That is possible but it will require a custom modification. Edit config-templatebuilder > avia-shortcodes > masonry_entries.php. Look for this code:
$items .= "<figure class='av-inner-masonry main_color'>"; $items .= $bg; //title and excerpt if($this->atts['caption_elements'] != 'none' || !empty($text_add)) { $items .= "<figcaption class='av-inner-masonry-content site-background'><div class='av-inner-masonry-content-pos'><div class='avia-arrow'></div>".$text_before; if(strpos($this->atts['caption_elements'], 'title') !== false){ $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup'])); $items .= "<h3 class='av-masonry-entry-title entry-title' {$markup}>{$the_title}</h3>"; } if(strpos($this->atts['caption_elements'], 'excerpt') !== false && !empty($content)){ $markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup'])); $items .= "<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>"; } $items .= $text_after."</div></figcaption>"; } $items .= "</figure>";
Replace it with:
$items .= "<figure class='av-inner-masonry main_color'>"; $items .= $bg; $items .= "</figure>"; //title and excerpt if($this->atts['caption_elements'] != 'none' || !empty($text_add)) { $items .= "<figcaption class='av-inner-masonry-content site-background'><div class='av-inner-masonry-content-pos'><div class='avia-arrow'></div>".$text_before; if(strpos($this->atts['caption_elements'], 'title') !== false){ $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup'])); $items .= "<h3 class='av-masonry-entry-title entry-title' {$markup}>{$the_title}</h3>"; } if(strpos($this->atts['caption_elements'], 'excerpt') !== false && !empty($content)){ $markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup'])); $items .= "<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>"; } $items .= $text_after."</div></figcaption>"; }
Add this to the Quick CSS field:
.av-fixed-size .av-masonry-entry .av-inner-masonry-content, .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content { position: relative; }
Masonry items may not align correctly when excerpt is activated.
Best regards,
IsmaelFebruary 17, 2015 at 12:28 pm in reply to: Full Width Images Menu With Link and Hover Effect #397409Hi!
Unfortunately, hover state won’t work on mobile. Try to show the caption even before clicking the image:
@media only screen and (max-width: 767px) { .av-overlay-on-hover .av-image-caption-overlay { opacity: 1; }}
2.) Apply unique id attribute to the grid row element. Use css to adjust the height.
Best regards,
IsmaelHey!
Enclose the content inside a unique div container. Add a custom css class. For example:
<div class="hide-mobile"><p class="condensedlines">Centina is the culmination of a family run business that has been operating in the South Australian construction industry since 2007.</p> <p class="condensedlines">Our vision is to become the company of choice in the South Australian construction market by delivering a multifaceted approach to construction and development. We understand that project delivery on time, on budget and to the highest quality standard is crucial to all clients and we aim to deliver on these critical areas to ensure a successful project.</p> <p class="condensedlines">Our values are simple- trust, quality honesty and craft. We deliver these values everyday through our work and in person.</p></div>
We added the <div class=”hide-mobile”> container. Now, add this to the Quick CSS field to hide the content:
@media only screen and (max-width: 767px) { .hide-mobile { display: none; } }
Cheers!
IsmaelFebruary 17, 2015 at 12:08 pm in reply to: Menu and Formatting Messed Up After Updating Enfold #397396Hey!
Please update the theme whenever a new version is available to prevent this kind of issue from happening. We know that updating the theme should not break the current layout of the page but the header configurator vastly improved the header options.I think it’s better if you remove all the css modifications for the header or navigation. Go to Enfold > Header panel. Set the Header Size to custom pixel value. Adjust the height. There might be a few adjustments needed but let’s take it one step at a time.
Cheers!
IsmaelHey willymagee!
Thank you for using Enfold.
Those are the Catalogue Element available inside the Advance Layout Builder.
Cheers!
IsmaelHey!
Add this code to the child theme’s functions.php:
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
Create a folder called “shortcodes”. Copy the modified menu.php file inside.
Best regards,
IsmaelFebruary 17, 2015 at 11:57 am in reply to: link to next site like the function provided in blog posts #397390Hey Cevik_Kuersad!
Thank you for using Enfold.
Unfortunately, it will not work for default pages. You need to modify the avia_post_nav function located on functions-enfold.php file.
Regards,
IsmaelFebruary 17, 2015 at 11:52 am in reply to: MyFonts fonts no longer working after Enfold 3.0.8 update #397383Hey!
I checked the site, the rotating tweeter feed looks good. Glad you fixed it.
Cheers!
IsmaelFebruary 17, 2015 at 11:39 am in reply to: Enfold – How to get rid of Woocommerce 2.3 product lightbox? #397374Hi!
There should be no other lightbox other than the theme’s default MPP lightbox. Did you install any lightbox plugin?
Best regards,
IsmaelFebruary 17, 2015 at 11:33 am in reply to: Masonry Portfolio sample page – add images/categories #397373Hi Andriy!
Thank you for using Enfold.
Use the masony element but first, you need to create posts or portfolio items with featured images. Apply categories to those post or portfolio items as well. Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.
You can also download the demo content on Enfold > Demo Import panel to have starting content to work with.
If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!
Regards,
IsmaelHey!
Alright. Congratulations on the new site! :)
This thread might help fix the error: https://kriesi.at/support/topic/problem-with-google-maps-in-enfold-theme/
Cheers!
IsmaelFebruary 17, 2015 at 11:24 am in reply to: Still issues with Custom Taxonomies and Blog Entries Shortcode Element #397366Hi!
I’m sorry but I’m not sure why the blog posts for custom post type is not working on your installation. Have you tried deactivating all plugins except for the WPML plugin?
Cheers!
IsmaelFebruary 17, 2015 at 11:05 am in reply to: Photography template sidebar menu and responsive toggle menu #397353Hi!
I think it’s because of this modification which changes the bottom padding of the current menu item from the default 5px to 7px :
.widget_nav_menu ul:first-child>.current-menu-item>a, .widget_nav_menu ul:first-child>.current_page_item>a { border: none; padding: 6px 7px 7px 0; }
Regards,
IsmaelHey!
Change the language first then configure the social profile option. Save changes. Do it again for the other language. Save changes. You need to configure both language options separately.
Cheers!
IsmaelHey!
You can try this on functions.php to hide the logo on scroll:
add_action('wp_footer', 'ava_scroll_hide_logo'); function ava_scroll_hide_logo(){ ?> <script> (function($){ var calc_scroll = function() { var header = $('#header').height(), scroll = $(window).scrollTop(); if(scroll >= header) { $('.logo').css('display', 'none'); } else { $('.logo').css('display', 'block'); } } $(window).scroll(function() { calc_scroll(); }); })(jQuery); </script> <?php }
Best regards,
IsmaelFebruary 17, 2015 at 10:50 am in reply to: woocommerce major update – enfold not 2.3 compatible? #397343Hey!
Thank you for using Enfold.
We have Enfold + WooCommerce 2.3.3 on our installation and it is working fine. Please make sure that other plugins installed are also compatible with WooCommerce.
@mczappa: I checked the site but it’s still using an old version of the plugin. Please try to upgrade it again. Let us know if the issue still exist.Regards,
IsmaelHi!
Replace the star rating modification with this:
.entry-summary .woocommerce-product-rating .star-rating { top: 15px; position: relative; }
Best regards,
IsmaelFebruary 17, 2015 at 10:34 am in reply to: custom post and category and blog post and category conflict #397334Hi!
Looks like you’re using the masonry element. When you select Which Entries? to show, is the custom post types from learndash available from the selection? Again, please post the login details here so that we can take a look. Set it as a private reply.
Cheers!
IsmaelHi!
Unfortunately, if I am not mistaken, flash objects won’t work on iPhone or any apple products. Did you test it on an iPhone or iPad? http://www.iphonefaq.org/archives/9730
Try to generate a video shortcode by using the shortcode wand or use the new youtube iframe embed code.
Best regards,
IsmaelFebruary 17, 2015 at 10:13 am in reply to: when choosing boxed layout header and sidebar displayed wrong #397326Hey!
Did you add any custom modifications to the theme? Please go to wp-content > uploads > dynamic_avia folder then delete the enfold.css file there. Toggle any theme options then save changes. See if that helps.
EDIT: Toggling the General Layout settings seems to help: http://terraforming.edu.rs/
Best regards,
IsmaelHey!
If you want a random slider, use the advance layer slider. Set the Slider Settings > Slideshow > Starting slide options to “random”. I’m not sure why you’re getting the error though. Have you tried it on a different browser?
Regards,
Ismael -
AuthorPosts