Forum Replies Created

Viewing 30 posts - 57,751 through 57,780 (of 67,197 total)
  • Author
    Posts
  • in reply to: Responsive Site Isuues #279333

    Hey!

    Glad it worked. If you have any questions, let us know.

    Regards,
    Ismael

    in reply to: How to make portfolio categories beautiful! #279332

    Hey!

    Do you want to make the sort item look like a button? You can add this on Quick CSS:

    .sort_by_cat a span {
    background: gray;
    padding: 10px;
    color: white;
    }

    I answered your inquiry regarding the sorting function limitation here: https://kriesi.at/support/topic/why-portfolio-categories-just-filters-items-on-the-same-page/

    Cheers!
    Ismael

    in reply to: Menu Button with an icon #279331

    Hi!

    Thank you for the info.

    Did you create two menus called logged-in and logged-out? If I am not mistaken, the code that you posted should call the logged-in menu when the user is logged in and the menu called logged-out when the user is not logged in. If you created those two menus, please try to use this:

    function my_wp_nav_menu_args( $args = '' ) {
     if( is_user_logged_in() && $args['theme_location'] == 'avia' ) {
      $args['menu'] = 'logged-in';
    } else {
      $args['menu'] = 'logged-out';
     }
     return $args;
     }
    add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' ); 

    Best regards,
    Ismael

    in reply to: errors in code #279328

    Hey!

    Thank you for the info.

    I’m sorry, I thought http://raygun.io is the website. Reviewing the error logs, most of it are coming from wp core theme files and not the Enfold. My guess is that the plugin are quite strict and are looking for high standards on coding practices for PHP. There seems to be no performance issues when I logged in to the wp dashboard. Please try to open a ticket on wordpress.org. I’ll ask Dude to check this thread in order to explain it further.

    Regards,
    Ismael

    in reply to: Transparent Page Question #279325

    Hey!

    Thank you for the update.

    Are you referring to the Reviews tab when you say “rating box”? I’m sorry but the rating box is not there when I checked the website. There are lots of script errors. Please deactivate the plugins especially the Shareaholic plugin. If you don’t mind, please post a screenshot of how the rating box looks like on your end. Try to add this on Quick CSS or custom.css to change the font color of the comments on the rating box:

    .main_color .comment-text {
    color: red;
    }

    Cheers!
    Ismael

    Hi afarahani!

    Thank you for visiting the support forum!

    Regretfully, this is a limitation of the category sorting function. It can’t be fix yet unless you hire someone to modify the sorting function for you. The only workaround is to disable the pagination option and show all portfolio items on a single page.

    Best regards,
    Ismael

    in reply to: Advance LayerSlider #279318

    Hey Andrew!

    Thank you for using the theme.

    Did you migrate the website on another domain? The image links are incorrect. In order to migrate the theme successfully and leave the database intact, please use this plugin: WP MigrateDB or WP MigrateDB PRO

    Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:

    http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
    https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Regards,
    Ismael

    in reply to: Sidebar Problem #279317

    Hey!

    Yes, that’s correct. Just copy the whole code on the child theme’s function.php. :)

    Cheers!
    Ismael

    in reply to: REMOVE TOOLTIP IMAGES #279313

    Hey!

    Thank you for the access.

    For clarification, you only want to remove the tooltip on the gallery images. Is that correct? Please try this on Quick CSS or custom.css in order to hide the gallery tooltip:

    div.avia-tooltip.avia-tt {
    display: none !important;
    }

    The problem is we can’t quite understand this line from your inquiry: “How to remove the tooltip of pictures so that only aprezca title vignette)?”.

    Cheers!
    Ismael

    in reply to: errors in code #279253

    Hey!

    Thank you for the info.

    Please deactivate all plugins then test it again. Might be in conflict with other plugins. Make sure that you’re running WP 3.9 or higher with Enfold 2.8.1. If deactivating the plugins doesn’t work, please post the login details here and set it as a private reply. We would like to ask for your permission if it’s possible to deactivate the plugins while working on the site.

    Best regards,
    Ismael

    in reply to: Responsive Site Isuues #279251

    Hi sdbroker!

    Thank you for the update.

    You can increase the width of the container but you have to consider smaller screens:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .container {
    width: 800px;
    }
    }

    Default value is 682px. You can declare more media queries if you want to target specific screen sizes.

    Cheers!
    Ismael

    Hi!

    Thank you for the update.

    You can try the Dynamic content from posts option of the layer slider. Create a new layer then switch to the Dynamic content from posts. Configure the post options then add the [content] shortcode to render the content of a specific portfolio item.

    Regards,
    Ismael

    in reply to: Accordion Slider – Title Issue #279243

    Hi sdbroker!

    Thank you for using the support forum!

    1.) It’s not possible to select the headline tag for the accordion title but you can edit config-templatebuilder > avia-shortcodes > slideshow-accordion.php. Find this code on line 577:

    $output .= !empty($slide->post_title) ? "<div class='aviaccordion-title' {$markup_title}>".$slide->post_title."</div>" : "";
    

    Add the headline or heading tag, something like this:

    $output .= !empty($slide->post_title) ? "<div class='aviaccordion-title' {$markup_title}><h1>".$slide->post_title."</h1></div>" : "";
    

    Replace h1 with the headline tag that you want.

    2.) Try to change the font size title of the accordion with this:

    #top .aviaccordion-title {
    text-transform: uppercase;
    font-size: 2em;
    }

    Cheers!
    Ismael

    in reply to: Big list of questions! :) #279230

    Hi nurdwurks!

    Thank you for using the theme.

    We actually prefer a single question on a single thread. Much easier for us to answer them on that manner. Also, it’ll be useful for other users asking for the same question.

    1.) You can remove the title with this on Quick CSS:

    h1.main-title.entry-title {
    display: none;
    }

    2.) Add this on functions.php:

    add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2);
    function avia_apply_custom_sort_order_to_post_nav($entries, $settings)
    {
    	if(!empty($entries['prev'])) $temp = $entries['prev'];
    	if(!empty($entries['next'])) $entries['prev'] = $entries['next'];
    	if(!empty($temp)) $entries['next'] = $temp;
    	return $entries;
    }

    For the category filter, add this:

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

    3.) Edit the search.php or the includes > loop-search.php.

    4.) Change the color of the ampersand with this on Quick CSS:

    .main_color .special_amp {
    color: red;
    }

    5.) Please refer to this link on how to fix permalink issues: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    6.) Change the iconlist background color with this:

    .main_color .avia-icon-list .iconlist_icon {
    background-color: red;
    }

    7.) We can set a specific width for the gallery but it might break the responsiveness of the element. Please select the thumbnail size on the Gallery Preview Image Size option.

    8.) Do you mind providing a screenshot of this pointer?

    9.) You can decrease the padding or adjust the width and height with this:

    .av_font_icon.av-icon-style-border .av-icon-char {
    width: 30px !important;
    height: 30px !important;
    padding: 10px;
    }

    10.) Use this to change the hover color of the icon and icon list elemen:

    #top .main_color .av-no-color.av-icon-style-border a.av-icon-char:hover {
    color: red;
    }
    
    .main_color .avia-icon-list .iconlist_icon:hover {
    background-color: blue;
    }

    11.) Edit the menu font on Enfold > Advanced Styling. Edit the Main Menu Link element.

    12.) You can use media queries to hide or remove the accordion slider for mobile device:

    @media only screen and (max-width: 767px) {
    .avia-accordion-slider-wrap {
    display: none;
    }
    }

    Before posting a question, please take some time to search on the forum or 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. :)

    Cheers!
    Ismael

    Hey!

    Thank you for the update.

    You can use css child pseudo selectors. This is for the first slide:

    .avia-fullscreen-slider div ul li:first-child .caption_center {
    top: -60%;
    }

    Second:

    .avia-fullscreen-slider div ul li:nth-child(2) .caption_center {
    top: 60%;
    }

    Third:

    .avia-fullscreen-slider div ul li:nth-child(3) .caption_center {
    top: -90%;
    }

    And this is for the last slide:

    .avia-fullscreen-slider div ul li:last-child .caption_center {
    top: 90%;
    }
    

    Make sure that all captions are center aligned.

    Regards,
    Ismael

    Hey soulventures!

    Thank you for using the theme! Glad you’re happy with it.

    If you want to remove the featured images, edit the posts. Below the featured image, enable the “Don’t display image on single post”. You can also add this on Quick CSS or custom.css:

    .big-preview, .small-preview {
    display: none !important;
    }

    Regards,
    Ismael

    in reply to: Header Height Changes #279225

    Hey!

    Thank you for using the the theme.

    Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) {
    .responsive .logo, .responsive .logo a, .responsive .logo a img {
    position: static;
    height: 45px !important;
    float: none;
    }
    
    #advanced_menu_toggle, #advanced_menu_hide {
    position: absolute;
    height: 36px;
    width: 36px;
    line-height: 36px;
    top: 60%;
    margin-top: -23px;
    font-size: 27px;
    }
    }

    Cheers!
    Ismael

    in reply to: Full width slider with a gallery on each slide #279224

    Hi!

    Thank you for the update.

    You can use the iframe tag to show an inline content. Add something like this on HTML panel of the layer:

    <iframe src="http://kriesi.at"></iframe>
    

    Adjust the width and height attribute on the Styles panel.

    Regards,
    Ismael

    in reply to: Share this on product pages #279223

    Hi suchfin!

    Thank you for using the theme!

    You can add this on functions.php:

    add_action( 'woocommerce_after_single_product_summary', 'avia_product_share', 1 );
    
    function avia_product_share() {
    	avia_social_share_links();
    }

    Cheers!
    Ismael

    in reply to: Login problems Enfold #279220

    Hey studioriquois!

    Thank you for using the theme.

    What do you mean by login problems? Did you use any membership or wp role plugins prior to the issue? Please try to deactivate those plugins or delete them on the wp-content/plugins folder completely.

    Cheers!
    Ismael

    in reply to: Avia Gallery editing? #279217

    Hey fortuneRice!

    Thank you for visiting the support forum!

    I’m sorry but you won’t be able to go back to the shortcode option panel again if you use the shortcode wand to insert the element. If I am not mistaken, you’re adding the gallery on a posts. Posts does not support the advance layout builder yet. You can add the feature for post s but we won’t provide any support for it. Edit wp-content > themes > enfold > config-templatebuilder > avia-template-builder > config > meta.php, find this code on line 5:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    Replace it with:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page', 'post'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    Regards,
    Ismael

    in reply to: Problem in tablet browser #279214

    Hi!

    Thank you for the info.

    Yes, we know about the header error but what about the parallax. Please use this to disable it for the stock browser.

    .html_header_top.html_header_sticky.html_bottom_nav_header.avia-android #main {
        padding-top: 0;
    }
    
    .html_header_top.html_header_sticky.avia-android #header {
        position: relative;
    }

    Cheers!
    Ismael

    in reply to: Logo and menu CENTER #279210

    Hey Jane!

    Thank you for visiting the support forum!

    What is the version of your Safari browser? Please post the actual link to the website here so that we can inspect it. Make sure that you’re running Enfold 2.8.1 with the latest version of WordPress.

    Best regards,
    Ismael

    in reply to: Icon List question #279209

    Hey jonahrbrown!

    Thank you for using the theme!

    Edit config-templatebuilder > avia-shortcodes > iconlist.php, find this code on line 118:

    "std" 	=> __("List Content goes here", 'avia_framework'),
    

    Replace it with:

    "std" 	=> __("", 'avia_framework'),
    

    Cheers!
    Ismael

    in reply to: How to make portfolio categories beautiful! #279207

    Hi afarahani!

    Thank you for the link.

    You can add something like this on Quick CSS or custom.css to increase the left and right padding between the sort items:

    #js_sort_items .text-sep {
    padding: 0 30px;
    }

    Best regards,
    Ismael

    in reply to: Change Page Title #279204

    Hi Sally!

    Thank you for visiting the support forum!

    Add something like this on functions.php to change the title of a certain page:

    add_filter('avf_title_args', 'avf_change_page_title', 10, 2);
    function avf_change_page_title($args,$id) {
    	if(is_page('About Us')) {
    		$args['title'] = 'Awesome Title';
    	} elseif (is_page('Products')) {
    		$args['title'] = 'Shop';
    	}
    	return $args;
    }

    The “About Us” page will have the “Awesome Title” as title and the “Products” page to “Shop”.

    Regards,
    Ismael

    Hey UncleGroOve!

    Thank you for using the theme!

    It’s not actually being overwritten by the theme’s stylesheets. I think the problem lies on the use of the selector. You need to use the theme’s proper css selector. If you want to target the h2 tags, the theme uses different selector to apply the color for it. Another set of selector to modify the text styling, size, variation etc.

    .alternate_color h2, .main_color h2 {
    color: red;
    }

    Use google inspect element or firebug to find the proper css selector.

    Cheers!
    Ismael

    in reply to: Using Own Buttons #279201

    Hi SMDNAS!

    Thank you for using the theme.

    Which form buttons are you trying to modify? If you can provide us with a screenshot or a link to the actual page, we’ll try to provide you with a solution. Also, please post the link to the button image.

    Cheers!
    Ismael

    in reply to: Background image in icon box #279200

    Hi SMDNAS!

    Thank you for visiting the support forum!

    Yes, that is possible but first you need to add the avia_template_builder_custom_css support. You’ll be able to add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit any avia elements like the iconbox element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “iconbox-bg”.

    You can add something like this on your custom.css or Quick CSS:

    .iconbox.iconbox-bg .iconbox_content {
    background: red;
    }

    Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    in reply to: Menu Button with an icon #279198

    Hi geanguru!

    Thank you for using the theme.

    You can add something like this on functions.php:

    add_filter( 'wp_nav_menu_items', 'avf_add_login_item', 10, 2 );
    function avf_add_login_item ( $items, $args ) {
    	$loginout = wp_loginout('', false);
        if ($args->theme_location == 'avia') {
    		$items .= "<li class='login_link $sub2'>".$loginout."</li>";
    	 }
         return $items;
    }

    Use the .login_link css selector to modify the look of the loginout menu item.

    Regards,
    Ismael

Viewing 30 posts - 57,751 through 57,780 (of 67,197 total)