Forum Replies Created
-
AuthorPosts
-
July 9, 2014 at 11:34 am in reply to: How can I add social proof (number of tweets, shares, etc…to blog home page? #288928
Hi tdyrsmid!
Thank you for using the theme!
You can use plugins like WP Socializer. Please search the wp plugin repository for any related social plugins like Addthis, Sharethis etc.
Cheers!
IsmaelHi!
Thank you for the info.
Please edit the images that you have included on the gallery then add a Description. The text will show below the image when you open it on lightbox.
Cheers!
IsmaelHey Snerp!
Thank you for using the theme.
Please add this on the child theme’s functions.php:
function avia_change_image_size_array() { global $avia_config; $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>420); // big images for blog and page entries avia_backend_add_thumbnail_size($avia_config); } add_action( 'init', 'avia_change_image_size_array', 1);Upload the image again or regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
IsmaelHi nokostudio!
Thank you for using the theme.
Please download the latest version Enfold 2.9. The prettyPhoto lightbox has been replaced with MagnificPopup.
Best regards,
IsmaelHi!
Thank you for using the theme.
Please add this on Quick CSS or custom.css:
#top .av-main-nav > li:hover > a { color: white; background-color: transparent; } #top .av-main-nav > li:hover > a > .avia-menu-text { background: blue; padding: 5px 10px; border-radius: 5px; }Cheers!
IsmaelHey HuxburyQuinn!
Thank you for using the theme.
Please add this on functions.php:
add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1); function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; return $settings; }Cheers!
IsmaelHey lome61!
Thank you for using the theme.
1.) Looks like you managed to figure this one out. If not, please use this:
.main_color #js_sort_items { background: transparent; } .sort_by_cat a.active_sort span { background: transparent; color: yellow; font-size: 16px; }2.) Please use this to add a border:
.grid-image img { border: 2px solid white; }3.) Use this for the grid title:
main_color .grid-content, .main_color .grid-entry-title { background: transparent; color: red; }4.) This should not affect other elements on the theme.
Regards,
IsmaelHi!
Thank you for using the theme!
Please try to deactivate all plugins then re-activate them one at a time to find the culprit. If you have W3 Total Cache plugin, disable the minify settings or clear the plugin cache.
Best regards,
IsmaelHey CloudChoice!
Thank you for the update.
I tested the youtube video on my end and it’s not working when you play it on lightbox but it does play when you’re on the actual youtube page. We will report the issue to Kriesi. For now, please remove the rel=0 attribute. It should work afterwards.
Regards,
IsmaelHi!
Thank you for the info.
The “Looking back 98% of brides” text and the other one at the bottom slides in properly after the page load. Please try to remove browser cache then reload the page a few times.
Cheers!
IsmaelJuly 9, 2014 at 5:13 am in reply to: Fullscreen slider and anchor #next-section with header transparent or not #288813Hey!
Thank you for using the theme.
I don’t see the issue on iPad or iPod touch 5 which has same exact resolution as iPhone if I am not mistaken. The next section arrow is visible on those two devices, landscape or portrait. I don’t want to suggest changing the bottom position of the anchor link but if you want you can try this:
.avia-ipad #top .scroll-down-link { bottom: 20px; }Or for iPhone:
.avia-iphone #top .scroll-down-link { bottom: 20px; }Cheers!
IsmaelHey!
Thank you for the update.
Please add this on Quick CSS or custom.css:
#top .av-main-nav > li > a { color: white; }If you want to change the color of the social icons as well, use this:
.header_color .social_bookmarks a { color: white; }Use this one for the submenu:
.header_color .main_menu .menu ul li a { color: white; } #top .header_color .main_menu .menu ul li>a:hover { color: #ffffff; background: orange; }Best regards,
IsmaelHey PaintedMidget!
Thank you for using the theme!
Please check all html tags like strong, div, p etc. Make sure that they are closed properly. Test the page, edit it then update. Look for the last element that is not deleted. Maybe you forgot to close something there.
Cheers!
IsmaelHi!
Thank you for the update.
If it’s not working on the wordpress default template like twenty thirteen then it’s not a theme related issue. Please contact the woocommerce support.
Best regards,
IsmaelHi jelmerstolp!
Thank you for using the theme!
Try to adjust the width of the masonry entries with this on Quick CSS or custom.css:
.av-masonry-entry { width: 33.33%; }Regards,
IsmaelHi!
Thank you for the update.
Please click the icon before the blue shortcode wand to toggle the toolbar.
Cheers!
IsmaelHi!
Thank you for using the theme!
First, using the plugin create a custom field called portfolio-test for example. Edit admin > register-portfolio.php, find this code on line 38:
'supports' => array('title','thumbnail','excerpt','editor','comments')Replace it with:
'supports' => array('title','thumbnail','excerpt','editor','comments','custom-fields')This will enable the custom fields or portfolio items. Next edit the portfolio item then add the portfolio-test custom field. Edit config-templatebuilder > avia-shortcodes > portfolio.php find this code on line 471:
$output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';Replace it with this:
$custom_field1 = get_post_meta( $the_id, 'portfolio-test', true ); $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : ''; $output .= $custom_field1;We create a variable called $custom_field1 and applied the portfolio-test key. We then output the $custom_field1 below the excerpt.
Best regards,
IsmaelHi!
Thank you for the info.
It has something to do with the Text Block after the slider. Somehow this code is breaking the layout:
<!-- <h3>Newsletter sign-up</h3> <p class="note">Stay up to date with our Newsletter</p> <fieldset> <input type="text" placeholder="Name" value="Name" /> <input type="text" placeholder="E-mail address" value="E-mail address" /> <input type="submit" value="Submit" class="submit" /></fieldset> -->Please remove it. You can check the correct page here: http://www.breastcenterofacadiana.com/test-footer/
Regards,
IsmaelJuly 9, 2014 at 3:34 am in reply to: WooCommerce Plugin and Advanced Editor (Avia Layout Builder) #288777Hey!
Thank you for the update.
I created a test page and there are script errors when you activate the woocommerce plugin. Maybe woocommerce in combination of another third party plugin is causing the issue. Deactivate all plugins then leave woocommerce activated. See if the advance builder works.
Cheers!
IsmaelHey!
Glad it worked.
Which page? Please post the url here. We need to inspect the actual element in order to give you a css specifically for that page.
Best regards,
IsmaelJuly 9, 2014 at 3:09 am in reply to: Events Manager Single Event Page Title using Blog "News" header title #288764Hey!
@mayorninja: Yeah, I’m sorry about that. I thought he’s using Tri.be Events Calendar. Event Manager uses “event” as custom post type so that filter should work. Thanks! :)Best regards,
IsmaelHi!
Thank you for using the theme!
I checked the page and the style on the footer is being applied. Let us know if the issue persist. Enfold 3.9 is out, please download in from your themeforest account. :)
Cheers!
IsmaelHey!
Alright. Let’s wait for at least a month, see if the request got upvoted. If not, you’ll have to find a plugin or hire someone to add it for you.
Best regards,
IsmaelHi!
Thank you for the update.
Please use this on Quick CSS or custom.css:
#top .avia-fullscreen-slider .av-video-slide.av-video-service-vimeo iframe { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }Regards,
IsmaelHey!
Alright. Please post the website url here along with the login details. Set it as a private reply. We would like to test it. Make sure that you’re running WP 3.9.1 plus the latest version of the theme.
Regards,
IsmaelHi samforan!
Thank you for using the theme.
Use the Color Section element. Add a background image then place all content inside the section.
Cheers!
IsmaelHey!
Thank you for the update.
Do you mind if we take a look at the actual page with the “dot” issue?
Regards,
IsmaelHey!
Thank you for the update.
Regarding round image, use this:
.rounded-container, .rounded-container img { border-radius: 0; }I thought you’re trying to change the single post view. Anyway, glad you fixed the font size on blog overview page.
Best regards,
Ismael -
AuthorPosts
