Forum Replies Created

Viewing 30 posts - 59,491 through 59,520 (of 67,572 total)
  • Author
    Posts
  • in reply to: How to translate "all" in fullwidth masonry? #250071

    Hey GoodGame!

    Thank you for using the support forum!

    Add this on functions.php:

    add_filter('avf_masonry_sort_first_label', 'avf_masonry_sort_first_label_translate', 10, 1);
    
    function avf_masonry_sort_first_label_translate($first_item_name) {
    	$first_item_name = __('Awesome','avia_framework');
    	return $first_item_name;
    }

    Change the “Awesome” string to something else.

    Cheers!
    Ismael

    in reply to: Setting Up a Blog issues #250068

    Hi!

    Please edit functions.php, find this code on line 93:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    

    Replace it with:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180, 'crop'=>false);		                 // small image for blogs
    

    This will prevent wp from cropping the edges of the small preview image. Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    in reply to: need help with the header #250067

    Hey!

    Thank you for using the theme!

    1.) You can use the icon shortcode then add it before the phone and email icon. Regarding the guestbook, can you please elaborate or explain what it is that you like to accomplish?

    2.) On Enfold > Header > Header Layout > choose the Logo left, Menu right option. Go to Header Behavior then enable the Let logo and menu position adapt to browser window option.

    3.) I’m sorry but what is “emtfernen”? Is it remove? Add this on Quick CSS or custom.css:

    #header_main {
    border: none;
    }

    Best regards,
    Ismael

    in reply to: Enfold Theme errors #250066

    Hey!

    Glad it ceased. We would investigate the issue further. Let us know if you’re still experiencing the issue when the website goes live. Please post the website url then we’ll check it. You can also set the Footer Columns to 1 then add a blank text widget as a temporary fix.

    Best regards,
    Ismael

    in reply to: enfold reach the limit of server's cpu and memory usage #250064

    Hi!


    @saquasar
    : We’re still not sure of the issue but checking your website, you’re using an old version of the theme. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/


    @TheBiZWeavers
    : Do you mind giving us a link to your website? If I am not mistaken admin-ajax.php is not a part of the theme and might have something to do with a third party plugin.

    Best regards,
    Ismael

    in reply to: Unable to upload additional fontello font #250061

    Hey!

    Glad you figured it out. Thank you for the hint. Noted. :)

    Regards,
    Ismael

    in reply to: Background on elements #249637

    Hi huurm900!

    Thank you for using the support forum!

    This is surely possible but we will need to see the actual page where you’re testing this. We will give you a response tailored to your needs once we have a taken a look at the website.

    Cheers!
    Ismael

    in reply to: Where to place metatext / description for several pages #249635

    Hi!


    @aribann
    : Thanks for helping out!

    @Harmen: @aribann is right, you can use the yoast seo plugin in order to specify the meta tags and descriptions. Refer to this link for more info: https://yoast.com/articles/wordpress-seo/

    Regards,
    Ismael

    in reply to: Header Issues for The latest version of Enfold… #249627

    Hi!

    Yes, that is possible. Just use this on Quick CSS:

    .header_color .header_bg {
    opacity: .5;
    }

    This will give the background a 50% transparency.

    Best regards,
    Ismael

    in reply to: Adjusting top menu hover element and sub menu #249624

    Hey philreece!

    Thank you for using the support forum!

    Please add this on Quick CSS or custom.css:

    .avia-menu-fx {
    bottom: 19px;
    }
    
    .main_menu .menu ul {
    top: 160px;
    }

    I hope that helps.

    Best regards,
    Ismael

    in reply to: need help with search box width #249621

    Hi Swedfit!

    Thank you for using the support forum!

    I checked the website but it gives me an internal server error. Please let us know if you have the site back. We’ll check the search box.

    Cheers!
    Ismael

    in reply to: icons and ipad #249620

    Hey!

    I’m sorry for the delay. We’re still investigating the issue. You’re having the same problem with this one and deactivating a plugin fix it for him. I hope the same thing can fix it on your end.

    https://kriesi.at/support/topic/ipad-and-iphone-page-links-not-working-urgent-unresolved/

    If that doesn’t work, please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) {
    .avia-section {
    background-attachment: scroll !important;
    }
    }

    Regards,
    Ismael

    in reply to: Featured image on blog grid not appearing #249610

    Hi!

    I’m sorry that you’re having this issue. I still can’t access the website. Maybe, my ip is blocked or something. Please post the login details here and set it as a private reply. We would like to check it on our end.

    Cheers!
    Ismael

    in reply to: Make layer on LayerSlider, responsive to full width. #249602

    Hi!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: Pagination Issue #249600

    Hey!

    Please reset the settings on Settings > Reading, set it to default. Set the homepage and blog page on the Enfold Theme Options. Reset the permalink settings again on Settings > Permalink panel. Let us know if it works.

    Best regards,
    Ismael

    in reply to: some css changes #249586

    Hi xpoveda!

    Thank you for using the theme!

    1.) Please add this on Quick CSS or custom.css:

    .avia_iconbox_title:hover {
    color: #000000;
    }

    2.) Edit search.php, find this code on line 52:

    <?php
    
    				//get the sidebar
    				$avia_config['currently_viewing'] = 'page';
    
    				get_sidebar();
    
    				?>
    

    Remove it if you don’t want a sidebar on the search page.

    3.) Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    height: 50px !important;
    top: 5px;
    }
    
    #header_main [data-av_iconfont="entypo-fontello"]:before {
    font-size: 15px;
    }
    
    .responsive #header .social_bookmarks {
    right: 45px;
    }
    
    #top .social_bookmarks li {
    width: 25px;
    }
    }

    Regards,
    Ismael

    in reply to: Problem with Enfold's Item Portfolio #249584

    Hey dettospa!

    Thank you for using the theme!

    Please try to flush the permalink settings once. Just go to Settings > Permalink then click the “Save” button once. This should fix the issue.

    Regards,
    Ismael

    in reply to: Custom Icons in Iconboxes? #249582

    Hey tcctemp!

    Thank you for using the theme!

    Yes it is possible to add icons on the icon library. Please refer to this link: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/

    On the next update of the theme, we’ll be adding a comprehensive css editor that will allow you to modify the style including color, font, background etc.

    Regards,
    Ismael

    in reply to: Move slider underneath the menu #249581

    Hi Alex!

    Thank you for using the theme and the info.

    Unfortunately, we can’t solve the issue without having taken a look at the actual website. If you don’t mind, please post the website url here. We would like to inspect it.

    Best regards,
    Ismael

    in reply to: Error 404 – page not found #249580

    Hi!

    Thank you for the update.

    Unfortunately, this is beyond the scope of support and is not a theme related issue. You might need to hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization.

    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.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Logo – Mobile – Lightbox – Internet Explorer #249579

    Hi GOWD!

    Thank you for using the theme!

    1.) Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo {
    float: left;
    -webkit-transform: translate(0,0);
    }
    }
    

    Can you please post a screenshot on where you want the social icons to go when viewing on mobile device?

    2.) You can control the mobile menu activation on Enfold > Header > Mobile Menu > Header Mobile Menu activation.

    3.) You can add an image element the set the link manually. Add the link of the youtube url. This should open the video on lightbox when you click the image.

    4.) On what version of IE are you testing this with? I checked with IE9 but I don’t see the issue.

    Cheers!
    Ismael

    in reply to: Google Map Directions #249569

    Hey Mary!

    Thank you for using the theme!

    What specific feature are you trying to get from Google Maps Direction? Can you please give us a link to a sample website or reference? We’ll be happy to help you once we have a better understanding of the situation.

    Best regards,
    Ismael

    in reply to: Problem with javascript on custom HTML #249568

    Hi Mattia!

    Thank you for using the theme!

    Are you talking about the image overlay with the circle at the center? Please add this on Quick CSS or custom.css:

    .image-overlay {
    display: none !important;
    opacity: 0 !important;
    }

    Nice website! :)

    Cheers!
    Ismael

    in reply to: Few questions about Enfold settings #249567

    Hi Zheq!

    Thank you for using the theme!

    1.) Are you talking about the galley tooltip? You can add this on Quick CSS or custom.css:

    .avia-tooltip {
    background: rgba(0, 0, 0, 0.8);
    }

    Change the color value.

    2.) Use this to change the lightbox overlay:

    div.pp_overlay {
    background: red;
    }

    3.) Edit config-templatebuilder > avia-shortcodes > contact.php, find this code on line 244:

    $elements['avia_age'] =	array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are human by solving the equation','avia_framework' ));
    

    Replace the label something else:

    $elements['avia_age'] =	array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are an awesome dude by dancing around','avia_framework' ));
    

    Edit framework > php > class-form-generator.php, find this code on line 520:

    $this->elements_html .= "    <span class='value_verifier_label'>$number_1 + $number_2 = ?</span>";
    

    Replace the question mark sign with something else or remove it.

    4.) Add something like this on functions.php to change the Thank you message:

    add_filter( 'avia_contact_form_args', 'enfold_customization_autoresponsder', 10, 1);
    function enfold_customization_autoresponsder( $form_args ) {
    	$form_args['autoresponder_subject'] = 'your text here';
    	return $form_args;
    }

    5.) This feature is beyond the scope of support. Please find a plugin like NextGen Gallery or hire a freelance developer to add the feature for you.

    It is easier for us if you ask or open a thread for each inquiry. Thanks!

    Cheers!
    Ismael

    in reply to: Logo cut off and mobile menu #249563

    Hi!


    @jrgrigg
    : The solution is for the OP. I’m sorry about that. Can you please post the link to the website? I visited the link that you posted but it is different from the screenshot and the logo is ok there.

    @Cheryl: Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo {
    float: left;
    left: 0;
    -webkit-transform: translate(0, 0);
    }
    
    .responsive .logo a, .responsive .logo img {
    margin: 0;
    max-width: 100%;
    height: 65px;
    max-height: 65px;
    top: 5px;
    }
    }

    Cheers!
    Ismael

    in reply to: problem loading main page #249560

    Hi Jim!

    Thank you for using the theme!

    Usually minimizing the image sizes and number of plugins that you install will greatly improve the performance. These are the things that you can do to optimize the website speed and page load. You can do the following:

    1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
    2. Once all images are on the website optimize with ewww optimizer plugin twice 1hr 10mins apart.
    3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
    4. Use BWP minify plugin to minify scripts and stylesheets.
    5. Install WP-Super cache, select all recommended settings, use memcache option, update .htaccess rules, increase cache to 840000, Save then delete cache.
    6. Logout your website, visit every page at least once to create super cache files.
    7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
    8. Have a cup of coffee.
    9. Visit your site after 20 minutes or so.
    10. Don’t forget to smile.

    I hope that helps.

    Best regards,
    Ismael

    in reply to: html textarea tag breaks Avia Layout Builder #249559

    Hey tbrim20!

    Thank you for using the theme!

    Regretfully, I’m not entirely sure of what it is you’re trying to do. If you don’t mind, please post the code on pastebin.com then we’ll check it and test it on our end. We’ll give you a response once we have taken a look at the issue.

    Cheers!
    Ismael

    in reply to: Enfold Theme errors #249558

    Hi!

    Thank you for using the theme!

    Please try to change the footer settings on Enfold > Footer > Columns. See if that helps. Also, add a blank text widget on Appearance > Widgets > Footer Columns to test the footer widgets.

    Regards,
    Ismael

    in reply to: Full Size Featured image in blog post #249552

    Hi jlovebomb!

    Thank you for using the theme!

    Please edit functions.php, find this code on line 102:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Adjust the width and height then set the crop parameter to false. Something like this:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>400, 'crop'=>false);		                 // big images for blog and page entries
    

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: Using Accordian Template on Product Pages #249551

    Hi!

    Thank you for using the theme!

    Please switch your theme to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. You can now copy the accordion shortcode to your product items.

    Regards,
    Ismael

Viewing 30 posts - 59,491 through 59,520 (of 67,572 total)