Forum Replies Created

Viewing 30 posts - 58,771 through 58,800 (of 67,175 total)
  • Author
    Posts
  • in reply to: Sidebar navigation link bounding box – off #254894

    Hi Jason!

    Thank you for the update.

    As long as it works for you then it’s ok. If you don’t mind, we would like to see the actual website.

    Cheers!
    Ismael

    in reply to: Portfolio Grid Filter Question #254893

    Hey lowjoecreative!

    Thank you for using the theme!

    Please edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 518:

    $output .= 	"<span class='text-sep ".$category->category_nicename."_sort_sep'>/</span>";
    

    Replace it with this:

    $output .= 	"<span class='text-sep ".$category->category_nicename."_sort_sep'>•</span>";
    

    I hope that helps.

    Cheers!
    Ismael

    in reply to: Enfold Text / Button Alignment Question #254892

    Hey cameron329!

    Thank you for using the theme.

    In order to help you with the issue, we will need to see the actual live website. If you don’t mind, please post the website url here. We will be happy to provide you with the proper solution once we have taken a look at the website.

    Cheers!
    Ismael

    in reply to: Visual Editor not working after update to WP 3.9 #254889

    Hi!


    @insightmike
    : Do you mind if we take a look at the website? Do you have Enfold 2.7 running? Please try to empty cache if you’re using a cache plugin like W3 Total Cache and purge the cache on your server if there is any.

    Regards,
    Ismael

    in reply to: link button not resizing for smartphone #254888

    Hey!

    Thank you for the update.

    I’m not sure why it is not centered but please add this inside the media query above:

    div#layerslider_41 div.avia-button-wrap.avia-button-center {
    margin-left: -20px;
    }

    Adjust the negative margin to center align the button.

    Cheers!
    Ismael

    in reply to: Header issues since updates #254886

    Hi!

    Thank you for the update.

    1.) Not sure why it is happening on iPad. Let me ask Josue to check this on his iPad.

    2.) Please add this on Quick CSS or custom.css to position the social icons below the logo, center aligned.

    @media only screen and (max-width: 767px) {
    .responsive.html_header_top #header_main .social_bookmarks {
    width: auto;
    position: absolute;
    left: 50%;
    top: 80px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    }
    
    .responsive .logo {
    margin-bottom: 40px;
    }
    }

    Regards,
    Ismael

    in reply to: Single Post pages : Delete some parts #254880

    Hi mikehirsch!

    Thank you for using the theme!

    You can remove the comment section with this on Quick CSS or custom.css:

    div.comment-entry.post-entry {
    display: none;
    }

    To remove the dummy widgets, edit sidebar.php then look for this code on line 75:

    //default dummy sidebar
            if ($default_sidebar)
            {
                 avia_dummy_widget(2);
                 avia_dummy_widget(3);
                 avia_dummy_widget(4);
            }

    Replace it with this:

    //default dummy sidebar
            if ($default_sidebar)
            {
                 //avia_dummy_widget(2);
                 //avia_dummy_widget(3);
                 avia_dummy_widget(4);
            }

    Regards,
    Ismael

    in reply to: advancing with same taxonomy in portfolio question #254877

    Hey!

    Thank you for the update.

    Unfortunately, the function is limited on sorting by portfolio category. The customization you’re after is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    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.

    Cheers!
    Ismael

    in reply to: No link in the button promo box? #254873

    Hi Marc!

    Thank you for using the theme!

    Did you recently update to WP 3.9? Please download the latest version of the theme. That should fix the issue. If you don’t mind, we would like to see the actual website.

    Best regards,
    Ismael

    in reply to: Header Icon problem in explorer #254440

    Hey!

    Thank you for the update.

    I checked the website on IE 10 and scroll the page a few times. The icon is positioned properly.

    Although I noticed that you’re using a very old version of the theme. Please download the latest Enfold version 2.7 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!
    Ismael

    Hey!

    Thank you for the update.

    Yes, there is a solution to change the flag with php but it is outside the scope of support and the task is quite involved. The flag hook and css code is working properly. You might need to hire a freelance developer to modify the theme for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    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.

    Cheers!
    Ismael

    in reply to: link button not resizing for smartphone #254434

    Hi Marssolutions!

    Thank you for using the theme!

    You can adjust the css and use media query to resize the button on mobile devices. Add this on Quick CSS or custom.css:

    @media all and (max-width: 767px) {
    .avia-button.avia-size-small {
    padding: 4px 5px 5px;
    font-size: 11px;
    min-width: 70px;
    }
    }

    Cheers!
    Ismael

    in reply to: Sticky Header problem with Boxed Grunge Layout.. #254431

    Hey!

    Thank you for your patience.

    If you don’t mind, can you please provide us with the link to the original thread that you posted? A screenshot explaining the issue will greatly help. We’re trying our best to help you out with the issues you’re having and if the solutions provided are not sufficient, we would like to apologize. Replacing the theme files and updating them are necessary to fix a certain problem or at least find the direct issue, so if it is not fixing the problem, again, we would like to apologize. Note that this is a free service so please, let’s keep the tone light and respectful. Thanks! :)

    Please post the login details here and set it as a private reply. Make sure that you’re running Enfold 2.7 and the latest version of WordPress which is version 3.9.

    Regards,
    Ismael

    in reply to: Duplicate images with Nextcellent plugin #254425

    Hey pshildal!

    Thank you for visiting the support forum! The kind words are heart warming.

    You can disable the theme’s default prettyPhoto lightbox if you want to use the third party plugin. Edit js > avia.js, find this code on line 60:

    //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
    

    Replace it with:

    //activates the prettyphoto lightbox
            //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
    

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: Shortcode does not work in excerpt #254421

    Hi!

    Sorry for the confusion.

    Please edit the same line on postslider.php that we suggested above. Replace the code with this:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : do_shortcode(avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 150) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " ") , "…", false, ''));
    

    This should allow the shortcode but since it is also calculating the shortcode as excerpt, you might want to increase the avia_backend_truncate string limit from the default 60 to 150 or more.

    Cheers!
    Ismael

    in reply to: iPhone iPad #254403

    Hey mullemull!

    Thank you for using the theme.

    Did you set the Enfold > Theme Options > Responsive Layout active? to Fixed Layout? If not, users don’t need to zoom because the website is responsive. If you still want to enable the zoom, please edit header.php and find this code on line 40:

    if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
    

    Replace it with:

    if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=yes">';
    

    Regards,
    Ismael

    in reply to: Visual Editor not working after update to WP 3.9 #254399

    Hey!

    Thank you for updating.

    WPML is releasing their beta version of the plugin which is partly compatible with WP 3.9 and unfortunately, still have a lot of issues.

    Please refer to this link: http://wpml.org/2014/04/status-wpml-wordpress-3-9/

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #254396

    Hey!

    The string can be translated. You can find it on includes > helper-social-media.php file.

    You can use this plugin to find the string then translate it: http://wordpress.org/plugins/codestyling-localization/

    Regards,
    Ismael

    Hey!

    Sure thing, just use this:

    .avia-icon-list .iconlist_icon {
    border-radius: 0;
    }

    If you have any questions, definitely take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    in reply to: WordPress 3.9 Wysiwyg not appearing #254387

    Hi!

    As always, thank you for using the theme!

    If you can’t see the update on the theme update panel, please download the latest version 2.7 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/


    @elbnetz
    : If you don’t mind, please provide us a link to your website. We would like to check it. You might want to increase the wordpress php memory limit to at least 128M. Depending on your hosting environment you might experience an issue when trying to access the Advance Layout Builder. This is usually due to the builder timing out because of a memory limit in your server environment. The first thing you can do to fix this is to add the following lines in your wp-config.php file located at the root of wp directory:

    define( 'WP_MEMORY_LIMIT', '128M' );
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );

    You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: RED FLAG : Social Icons Text and Search CSS #254380

    Hi!

    Glad it is working now. If you have any questions, definitely take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. You can also watch some of our Video Tutorials to learn more about the theme.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page.

    Best regards,
    Ismael

    Hi basmati!

    Thank you for visiting the support forum!

    They will be able to see the notice but they won’t be able to install it no matter what. The message bbpress notice should look like this:

    Sorry, but you do not have the correct permissions to activate the BB Press Forum Software plugin. Contact the administrator of this site for help on getting the plugin activated.
    
    Dismiss this notice

    They can choose to hide that message if they want by clicking the “Dismiss the notice” link.

    Best regards,
    Ismael

    in reply to: LayerSlider Wp responsiveness #254374

    Hi!

    Thank you for the screenshot.

    The problem is that you added the image as layer and if I am not mistaken, you applied margins to them. Before we edit the layer slider, please download the latest version of the theme, Enfold 2.7. Update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Instead of adding the background image as layer, use it as the slide’s background image. Edit the slide then look for Slide Options > Choose slide image to set the image as background.

    Best regards,
    Ismael

    in reply to: Issues since updating to 2.6.4 #254364

    Hey!

    Glad it is working now. If you have any questions, let us know.

    Best regards,
    Ismael

    in reply to: Enfold overriding WP Resize tool #254363

    Hi!

    Designing a responsive website is quite challenging and one of the hardest part of this is correcting the images. All of the properties, from the way they resize, to their dimensions and file size can give even the most experience developers a headache. It is true that not every users know how to use the image editor that’s why we added thumbnail sizes to take care of different orientations and layout sizes. You can find all sorts of thumbnail sizes on functions.php:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            // big images for blog and page entries
    	$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );					// images for fullsize pages and fullsize slider
    }

    You can adjust the width and height attribute, you can even tell wp not to crop the images by setting the crop parameter to false. If you could tell us what image size you’re having trouble with, we might find a way to fix it. Note that the thumbnail image sizes for woocommerce can be found on config-woocommerce > config.php. Look for this code on line 13:

    //product thumbnails
    $avia_config['imgSize']['shop_thumbnail'] 	= array('width'=>120, 'height'=>120);
    $avia_config['imgSize']['shop_catalog'] 	= array('width'=>450, 'height'=>450);
    $avia_config['imgSize']['shop_single'] 		= array('width'=>450, 'height'=>999, 'crop' => false);

    You can change the dimension then easily regenerate 2000+ thumbnails or more using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    If you can explain to us your specific problem, we will be happy to assist you.

    Best regards,
    Ismael

    in reply to: IE8 issue #254336

    Hey!

    Glad it is fixed.

    If you have any questions, definitely take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. You can also watch some of our Video Tutorials to learn more about the theme.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page.

    Regards,
    Ismael

    in reply to: Hyperlinks and formatting removed in AVIA Layout Builder #254335

    Hey!

    Thank you for using the theme.

    This is issue is a bit weird. I can’t reproduce it on my end. Please deactivate all plugins then test it again. Let us know if the issue persists. Please create a test page where we can see the issue.

    Regards,
    Ismael

    in reply to: advancing with same taxonomy in portfolio question #254332

    Hey tonyiatridis!

    Thank you for using the theme.

    Please add this on functions.php:

    function avf_same_category_navigation($settings) {
          if($settings['taxonomy'] == 'portfolio_entries')  $settings['same_category'] = true;  
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','avf_same_category_navigation', 10);

    Cheers!
    Ismael

    in reply to: Missing right border on mega menu nav #254326

    Hey!

    Thank you for the screenshots.

    This should be fix on the latest update of the theme. Please download the latest version Enfold 2.7 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/

    Please use this for the border:

    .av-main-nav > li {
    line-height: 30px;
    border-left: 1px solid #e1e1e1;
    margin-left: -1px;
    }

    Cheers!
    Ismael

    in reply to: Styling Issues #254325

    Hey!

    Thank you for the update.

    Did you recently update to WP 3.9? The layer slider panel might not be working because you’re using 2.6.2. Please download the latest version Enfold 2.7 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/

    If you don’t mind, please post a screenshot of what you’re trying to do with the layer slider because your first post is a bit confusing: “I’m trying to have a light gray background for the main content & a white background for the main content.

    Regards,
    Ismael

Viewing 30 posts - 58,771 through 58,800 (of 67,175 total)