Forum Replies Created
-
AuthorPosts
-
Hey Steve!
Thank you for using the theme!
Please add this on functions.php:
add_filter('avf_logo_alt', 'avf_change_logo_alt'); function avf_change_logo_alt($alt) { $alt = "New Alternate Text Here"; return $alt; }Change the value.
Cheers!
IsmaelHi!
Thank you for the update.
We can’t see the actual website, it requires us to login. Please post the login details here.
Cheers!
IsmaelHi elbnetz!
Thank you for using the theme.
Please remove .avia_desktop selector. Use this:
#advanced_menu_toggle, #advanced_menu_hide { background-color: #000!Important; color: #ffffff!Important; border-color: #000!Important; }Regards,
IsmaelHi!
Glad it work.
@laraparodi: Please refer to this link and follow the instructions: https://kriesi.at/support/topic/gallery-edit-issues#post-277654Regards,
IsmaelHey samforan!
Thank you for using the theme.
Have you tried adding a br tag before the button? Please post the actual page. We would like to check it. You can also add a unique selector on the p tag. Look for this code on the cf7 form:
<p>[submit "Submit my Application"]</p>Replace it with this:
<p class="form-top-margin">[submit "Submit my Application"]</p>Add a top margin on Quick CSS or custom.css:
.form-top-margin { margin-top: 15px; }Cheers!
IsmaelHey!
You can open a request for the feature on our Feature Requests page. If enough users ask for this modification, we’ll add it on the theme.
Cheers!
IsmaelHey!
Thank you for the info.
I’m sorry about that. There are lots of changes since 2.2, fyi version 2.2 has been release September last year and there are lots of changes since then. One example is the new header builder on Enfold theme options and more. Please check the change log on Enfold Overview. Good thing you didn’t upgrade WordPress to 3.9 because it will surely break the theme but again version 2.7 of the theme fix this incompatibility issue. It is absolutely necessary that you update the theme frequently to fix minor bugs, get hold of new theme features, element improvements, browser fixes etc, unfortunately, you waited to long to do this.
Regarding the modifications, please create a change log or use a child theme next time. I’m sorry but it is impossible for us to trace back the changes you’ve made on the theme. Like I said on my previous post, the update might break some elements on the theme.
Cheers!
IsmaelJuly 15, 2014 at 5:46 am in reply to: Enabling Recent Post Navigation For Blog but Disabled For Products #291395Hi!
@grwebs: What do you mean by “next products”? Can you please give us a link to the actual page? A screenshot will help.Cheers!
IsmaelJuly 15, 2014 at 5:35 am in reply to: WooCommerce Plugin and Advanced Editor (Avia Layout Builder) #291392Hey!
Thank you for the update.
Please post the login details on this installation. We would like to check it. What is the current version of PHP? Please ask your host.
Cheers!
IsmaelHi!
Thank you for the link.
Alright. Please replace the this line of code:
echo "My awesome message here";with this:
echo "<div class='jobs-message'>No jobs available.</div>";Add this on Quick CSS or custom.css:
div.jobs-message { position: absolute; bottom: 25px; }Regards,
IsmaelHey Richard!
Thank you for using the theme.
Please 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:
$readmore = '<br /><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>'; $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.$readmore."</div>" : '';Best regards,
IsmaelHi!
Thank you for the info.
Where do you like to place the message? Please give us a screenshot or the actual link to the page.
Cheers!
IsmaelHi simchippy!
Thank you for using the theme!
Please edit the page then edit the Blog Posts element. On Blog Content length setting, choose Excerpt with Read More Link.
Cheers!
IsmaelHi!
Alright. Sorry about that. You also need to use this:
#top .fullsize .template-blog .post .entry-content-wrapper { text-align: justify; max-width: 900px; margin: 0 auto; }Best regards,
IsmaelHi!
Thank you for the update.
Can you please provide us with the login details? We would like to check it. I doubt if it has anything to do with the php settings on your server but please do ask if possible. I tested Dude’s functions.php on my installation and it works fine.
Best regards,
IsmaelHi!
Glad you figured it out. If you still have questions, let us know.
Regards,
IsmaelHey!
Thank you for the info.
Images on the post slider will inherit the size of its container so using a 120x120px thumbnail size will give you a distorted or stretched image if the size of the column is, let’s say 700px. Please use the first option on Preview Image Size setting if you want the post slider to automatically pick the thumbnail size base on the column width.
Regards,
IsmaelHi alfredscholten!
Thank you for using the theme.
Edit js > avia.js, find this code on line 1063:
currentLink.bind('mouseenter', function() { sublist.stop().css({visibility:'visible'}).animate({opacity:1}); });Replace it with:
currentLink.bind('click', function() { event.preventDefault() sublist.stop().css({visibility:'visible'}).animate({opacity:1}); });Cheers!
IsmaelHi!
Glad it worked. If you still have questions, let us know. :)
Best regards,
IsmaelJuly 15, 2014 at 3:25 am in reply to: How to prevent height cropping in fullwidth easy slider #291360Hi danwinckler!
Thank you for using the theme!
Have you tried using the Masonry or the Extra Large image size? These thumbnail sizes have crop parameter disabled. You can also use this plugin if you want to manually set the size of the thumbnail or disable the crop parameter: https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelJuly 15, 2014 at 3:20 am in reply to: Enfold – Lightbox css, bringing back the white border around images #291358Hey!
Alright. If you want to add white border on the lightbox image, you can use this on Quick CSS or custom.css:
img.mfp-img { border: 5px solid white; padding: 0px; margin: 40px 0px; } div.avia-popup .mfp-close { width: 40px; height: 40px; right: 0px; } .mfp-counter { position: absolute; top: 0; right: 20px; }Best regards,
IsmaelHi!
Thank you for the update.
Add this on Quick CSS or custom.css to move the covering section downwards:
@media only screen and (min-width: 480px) { .home div#after_layer_slider_1 { margin-bottom: 260px; } }Regards,
IsmaelHey abskevin!
Thank you for using the theme!
1.) What kind of videos are you trying to open on lightbox? I mean is it a youtube, vimeo video etc? This should open in lightbox by default, you just need to use the right URL. Please refe to this link: http://dimsemenov.com/plugins/magnific-popup/documentation.html#iframe_type
2.) Try to remove the rel attribute. If you have a cache plugin, disable it then refresh the page a few times.
Best regards,
IsmaelJuly 15, 2014 at 2:59 am in reply to: Minor Woo Commerce error issue: "No products found which match your selection." #291352Hey!
Thank you for using the theme!
I’m not really sure how it got there but please update the theme to Enfold 2.9.1. Download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHi Jonn!
Thank you for using the theme!
Have you tried using the code block? Add the iframe tag. Something like this:
<iframe src="http://kriesi.at" width="100%" height="500"></iframe>Best regards,
IsmaelHi shreinmedia!
Thank you for visiting the support forum!
Please edit includes > loop-index.php, remove everything then replace it with this code: http://pastebin.com/eS219Y9y
Regards,
IsmaelHi!
Looks like it is possible to filter the thumbnail sizes only when they are needed but it is a bit complicated so a freelance developer might come in handy. Refer to this link: http://wordpress.stackexchange.com/questions/57369/new-image-size-version-only-for-the-featured-image-file
I haven’t tested this plugin and I’m not sure if this is of any help but you can try on a test server, maybe, just maybe it will solve your problem: http://wordpress.org/plugins/dynamic-image-resizer/
Cheers!
IsmaelHi aIVIis!
Thank you for using the theme!
You can add a border on the post-delimiter div right after each post. Use this on Quick CSS:
div.post_delimiter { border-bottom: 1px solid gray; }Cheers!
IsmaelHey Richard!
Thank you for using the theme.
You can add this on Quick CSS or custom.css to move the caption text under the slider image:
div.avia-caption { position: absolute; bottom: -120px; } .avia-slideshow-inner { padding-bottom: 120px !important; } .avia-slideshow-dots { bottom: 120px; }Cheers!
IsmaelHi!
Thank you for the info.
The code Devin suggested should increase the width of the entry content container. Do you mind if we take a look at the actual page where you want to apply this? Did you add this code?
#top .fullsize .template-blog .post .entry-content-wrapper>* { max-width: 1040px; margin-left: auto; margin-right: auto; }Cheers!
Ismael -
AuthorPosts
