Forum Replies Created
-
AuthorPosts
-
Hey darranreadman!
Thank you for using Enfold.
Turn on the custom css class ( http://bit.ly/1C1eSV3 ) then modify the text block containing the revolution slider shortcode. Add a custom css class attribute to it. Use “custom-slider” for example and then use css media query in the Quick CSS field to hide the text on mobile device. Something like this:
@media only screen and (max-width: 767px) { .custom-slider { display: none !important; } }
Best regards,
IsmaelHi Gwellins!
Thank you for using Enfold.
The screenshot is not working. Please check. A link to the site will help. Try to use the Quick CSS field to change the position of the second logo on mobile device. You have to use css media queries in order to target smaller screens. http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
Best regards,
IsmaelHi!
You can change this line:
$(this).find('.av-inner-masonry').prepend('<div class="av-masonry-featured">Featured Project</div>');
to this:
$('<div class="av-masonry-featured">Featured Project</div>').insertAfter(this).find('.av-inner-masonry-sizer');
Cheers!
IsmaelJuly 1, 2015 at 1:02 pm in reply to: Layer Slider Screen and Image compatibility Issue. Please Help! #466947Hi!
Did you set the image as a slide background? The layer slider plugin automatically offset the background, you’ll see a negative margin added on the background container, and then automatically adjust the height of the container where the background resides to maintain the aspect ratio and responsiveness of the background image. This offset and height change don’t work well with any type of background specially when you have text embedded on it. Try to remove the background then set the image as layer. Set the height and width to 100%. Or separate the text from the background image.
Cheers!
IsmaelJuly 1, 2015 at 12:51 pm in reply to: Cannot create any content after upgrade to latest version #466942Hey!
I was able to reproduce the issue so I checked the console and there’s an error:
http://www.thenps.com/wp-admin/admin-ajax.php Failed to load resource: the server responded with a status of 500 (Internal
Please try to deactivate all plugins because one of them might be causing the issue.
Cheers!
IsmaelJuly 1, 2015 at 12:38 pm in reply to: Exclude current portfolio item on list of portfolio items #466933Hi!
We modified the code there. Please use this instead:
function ava_exclude_portfolio($query) { if (is_singular('portfolio')) { $exclude = avia_get_the_ID(); $query->set( 'post__not_in', array($exclude) ); } } add_action('pre_get_posts', 'ava_exclude_portfolio');
Cheers!
IsmaelHey!
Again, thank you for the info. I’m sure there’s a lot of users who will have interest in this plugin. Is this the link to the plugin? https://wordpress.org/plugins/multilanguage/
Best regards,
IsmaelJuly 1, 2015 at 12:32 pm in reply to: Border on Full Width site, only reach maximum container width/Header Back Respon #466927Hey sublime5o!
Thank you for using Enfold.
1.) You can set the color section to have a “No border styling”. Use the Seperator / Whitespace to separate the sections.
2.) Use a larger image or add this in the Quick CSS field:
.header_color .header_bg { background: #ffffff url(//gl.dyndns-ip.com/coles/wp-content/uploads/2015/06/headerback.jpg) top center no-repeat scroll; background-size: cover; }
Best regards,
IsmaelHey!
Thank you for using Enfold.
Use this in the Quick CSS field:
#top #wrap_all .avia-gallery .avia-gallery-thumb a:nth-last-child(-n+3) { display: none !important; }
Best regards,
IsmaelHey j_arendall!
Thank you for using Enfold.
The site is on maintenance mode. Please provide a temporary login detail here. Set it in the private content field.
Regards,
IsmaelJuly 1, 2015 at 12:16 pm in reply to: Remove Current Portfolio Post from related portfolio grid Enfold #466914Hi!
Alright. We modified the code a bit and it’s working now.
http://grandmawilds.getfletch.co.uk/Products/stem-ginger-biscuit-window-box/
http://grandmawilds.getfletch.co.uk/Products/yorkshire-parkin-window-box/
http://grandmawilds.getfletch.co.uk/Products/cherry-bakewell-biscuit-window-box/Cheers!
IsmaelHi!
I think it’s OK now. The problem was that the footer container is outside the wrap_all div / container, that’s why the social icon hover effect or styling is not working. This issue usually happens when you place contents inside a color section but then leave other contents on their own containers.
Cheers!
IsmaelHey!
You didn’t update the first code. Please check it now. You should see the “Featured” text on the top left corner of the portfolio item. Use the “.av-masonry-featured” selector to change the style of the “Featured Project” text.
Regards,
IsmaelJune 30, 2015 at 11:20 am in reply to: Page without header, footer, nav, etc doesnt scale properly on small devices #466320Hi liv2day_com!
Thank you for using Enfold.
Are you referring to the color section background? Please give us a link to the actual site so that we can check it. A screenshot of the issue will help. Use imgur or dropbox.
Cheers!
IsmaelHi HighschoolAustralia!
Thank you for using Enfold.
Try to generate the table shortcode from a temporary posts or page using the shortcode wand then copy it in the tabs content editor.
Cheers!
IsmaelHey!
You can try the solution provided here in order to put the sidebar below the content on mobile devices: https://kriesi.at/support/topic/menu-left-sidebar-widget-on-mobile-devices/#post-463852
OR add a widget element below the content as suggested on the previous thread.
Regards,
IsmaelHi!
I’m sorry but what do you mean by “flag”? and ‘nieuws’ of ‘Nieuws’ ?
Best regards,
IsmaelHi Milan!
Thank you for using Enfold.
Please add this in the Quick CSS field:
.tab_titles div[data-fake-id="#tab-id-2"] { display: none !important; }
Regards,
IsmaelJune 30, 2015 at 11:07 am in reply to: Remove Current Portfolio Post from related portfolio grid Enfold #466300Hi!
Where did you add the code? I checked the functions.php file but it’s not there. And you’re using an old version of the theme, 3.0.4. Please update to the latest version, 3.1.2.
Cheers!
IsmaelHey!
You can use this for the sign up button:
.transparent-contact-form input[value="SIGN UP"] { border: 3px solid #fff !important; color: #fff !important; }
Cheers!
IsmaelHi!
I actually updated the code above. Let’s start again. Please use this instead:
add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mods', 10, 2 ); function avf_masonry_loop_prepare_mods( $key, $entries ) { $postcategories = get_the_terms($key['ID'], 'portfolio_entries'); $categorylist = array(); if ($postcategories) { foreach($postcategories as $cat) { $categorylist[] = $cat->name; } } $featured = in_array("Featured",$categorylist); foreach ( $key as $post => $value ) { if ( $post == 'text_before' && $featured) { $value .= "<div class='masonry-featured'></div>"; } $key[$post] = $value; } return $key; }
After that, add this below:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($) { $('#top .av-masonry-entry').each(function() { if($(this).find('.masonry-featured').length) { $(this).find('.av-inner-masonry').prepend('<div class="av-masonry-featured">Featured Project</div>'); } }); }(jQuery)); </script> <?php }
Cheers!
IsmaelHey!
I’m sorry but I’m not aware that google requires a 404 page in the sitemap that’s why I asked if you found any documentation about it. I tried to search for this particular topic but I can’t find anything. Is it stated in the google webmaster tools to include the 404 page? I’ll ask the rest of the support team to check this thread.
Regards,
IsmaelHey!
Have you tried the blog posts element? Set the blog style to grid. Or the Portfolio Grid element but you will have to use the portfolio items.
Cheers!
IsmaelJune 30, 2015 at 10:11 am in reply to: Avia Layout Builder – Master templates or master elements #466265Hi!
No, unfortunately, the theme doesn’t have that capability or feature. Maybe, you should look for a plugin or create a template then use custom fields. http://bit.ly/1HvufY8
Cheers!
IsmaelHi!
Please use imgur or dropbox to post a screenshot.
I want to make my sub-footer and my footer look just like the website from Wealth Factory at:
wealthfactory.com1.) Like I said, there is no option in the theme to add another text block in the footer area so the only way to add this text, if that’s what you want, is to edit the footer.php file directly. You can modify that file inside the Appearance > Editor panel. If you can provide a screenshot of the area that you want to copy then we will be able to help you better.
I have a side bar to the left side and I want to know how can I make this side bar hide and re-appear with a click of a button.
2.) Did you try the suggestion above? All you need to do is to add it in the functions.php file. Again, you can edit that file in the Appearance > Editor panel. Look for the functions.php then add the code at the very bottom of the file. Save the file then check the frontend of your site. You should see a “Click This” text that you can click to hide and show the sidebar.
add_action('ava_after_main_container', function() { echo "<a href='#' class='click-me-toggle'>Click This</a>"; }); add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($) { var sidebar = $('.html_header_left #top #header'); $('.click-me-toggle').click(function() { $(sidebar).toggle(); }); }(jQuery)); </script> <?php }
Let me know if you’re done adding the code then we’ll check it. Make sure that you copy the code, not from your email but directly from this forum.
Regards,
IsmaelHey DuriaGlobal!
Thank you for using Enfold.
I checked the site then added a product to the cart but I don’t see any zeros in the cart counter. Can you please provide a screenshot of the issue? Use imgur or dropbox.
Best regards,
IsmaelHi getmebranded!
Thank you for using Enfold.
Please ask their support what is the name of the custom post type use for the plugin. Use the avf_title_args to change the title. Add this in the functions.php file:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ( is_singular('CUSTOM POST TYPE NAME HERE') ) { $args['title'] = get_the_title($id); } return $args; }
Cheers!
IsmaelHi!
1.) The fonts that is used in the demo is the “Lato” font.
2.) If you want to have related posts, create posts with the same tags.
Cheers!
IsmaelHi finchkelsey!
Thank you for using Enfold.
Is there any reference site that we can check? A mail chimp faq or a link to the site where you get the code? Make sure that the quotation marks in the code are intact when you copy the code. If you have the chance, please contact the mail chimp support for more info.
Best regards,
Ismael -
AuthorPosts