Forum Replies Created

Viewing 30 posts - 48,871 through 48,900 (of 67,539 total)
  • Author
    Posts
  • in reply to: 404 Page error on Tags sub-pages #454941

    Hey!

    How did you modify the tag archive pages to look like that? Did you create a new template?

    Regards,
    Ismael

    Hey!

    1.) Go to Appearance > Menu panel.
    2.) Create a menu.
    3.) Set it as Enfold Main Menu in the theme location settings, look for it below the menu editor.
    4.) Add the pages that you want to display in the main menu.

    I think you missed step number 3.

    Best regards,
    Ismael

    in reply to: Table column 1 and 2 background color #454937

    Hi!

    Great! Glad you figured it out. :)

    Best regards,
    Ismael

    in reply to: LayerSlider WP broken and needs update? #454935

    Hi!

    Did you get a refund? If you did then that’s good. It’s weird that you bought the product but they don’t let you have it. You should report that to Envato. Like I said, you don’t need to buy the plugin because it is already included in the theme package.

    Cheers!
    Ismael

    in reply to: Mouseover Bildwechsel bei Portfolio Thumbnails #454933

    Hey!

    Is there any website that you know with an example of the “image-flip”? We would like to check it.

    Regards,
    Ismael

    in reply to: Different main menu based on cookie #454929

    Hi!

    Use the menu id instead of the menu name.

    add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args_filter');
    function my_wp_nav_menu_args_filter($args)
     {
      if ($_COOKIE['division'] == 'west' && $args['menu_id'] == 'avia-menu' ) {
        $args['menu'] = '7';
      }
      return $args;
    }

    Change 7 to the menu id of the “West Main Menu”. How did you set the cookie?

    Cheers!
    Ismael

    in reply to: Color Problems with alternate content area #454925

    Hi!

    I checked the first section and the styling reflects the alternate content settings. Alternate content background color is set to #fafafb.

    .alternate_color, .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img .alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content, .alternate_color .av-share-box ul, #top .alternate_color .av-related-style-full .related-format-icon, .alternate_color .related_posts.av-related-style-full a:hover, .alternate_color.avia-fullwidth-portfolio .pagination .current, .alternate_color.avia-fullwidth-portfolio .pagination a, .alternate_color .av-hotspot-fallback-tooltip-inner, .alternate_color .av-hotspot-fallback-tooltip-count {
      background-color: #fafafb;
      color: #666666;
    }

    Try to change the color settings to something bright like yellow, violet etc. to see which elements are affected by the current settings.

    Best regards,
    Ismael

    in reply to: Blog Post IMAGES #454923

    Hi!

    Yes, that is an option if you want to set the featured image manually. If you want to use the default featured image option and get the actual image size, you can resize the blog image thumbnail. Edit function.php, look for this code:

    $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

    Adjust the width and height and then regenerate or upload the images as featured image again.

    Cheers!
    Ismael

    in reply to: wo finde ich in update 3.2 die einstellung für…. #454922

    Hi set_carsten!

    Thank you for using Enfold.

    Make sure that you have the latest version, 3.2. You can find the option on Enfold > Header > Header Layout panel. Adjust the Header Style settings.

    Regards,
    Ismael

    in reply to: Fatal error: Call to undefined method WooCommerce #454921

    Hey chris2712!

    Thank you for using Enfold.

    The error clearly states that the issue comes from the plugin files, not from the theme. Unfortunately, we don’t provide support for third party plugins. Please contact the plugin author regarding this issue.

    Cheers!
    Ismael

    in reply to: Disable Button? #454920

    Hi!

    Add this to the Quick CSS field to disable the link:

    #top .avia-button-fullwidth {
      pointer-events: none;
    }

    Cheers!
    Ismael

    in reply to: Error navigation on mobile device #454919

    Hi!

    Alright. Try to add this to the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top {
      overflow-x: hidden;
      position: relative;
    }}

    Cheers!
    Ismael

    in reply to: Issue with author image sizes #454918

    Hi!

    Please try this:

    .rounded-container img {
      min-height: 81px !important;
      min-width: 81px !important;
    }

    Hard refresh the page after.

    Cheers!
    Ismael

    in reply to: backgrounds and some content missing Windows mobile #454416

    Hey!

    The difference is the header transparency, that’s why this css code for the mobile menu is not working on the new page:

    @media only screen and (max-width: 767px) {
    #top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle {
      background-color: #ffffff;
      color: #c05527;
      border-color: #ededed;
    }}

    The color section background attachment works ok here: http://sundaradesign.com.au/dev/test-color-section/

    Background attachment is set to scroll by default then adjusted to fixed in the Quick CSS field. This is the css code:

    @media only screen and (min-width: 768px) {#test-section {
      background-attachment: fixed !important;
    }}

    Regards,
    Ismael

    in reply to: Blog layout #454408

    Hi!

    Great! Glad we could help. :)

    Best regards,
    Ismael

    in reply to: Media data / Pictures #454406

    Hi Chris8800!

    Thank you for using Enfold.

    I’m sorry but what do you mean by “Image Database”? If you want to download the demo data, go to Enfold > Demo Import panel. Select the demo that you want to use. The demo images are included.

    Cheers!
    Ismael

    in reply to: Internal Link in "Advertising Area" Widget ? #454403

    Hey!

    Try to replace the code with this:

    add_action('wp_footer', 'ava_custom_script', 10);
    function ava_custom_script(){
    ?>
    <script>
    (function($){
      $('.avia_partner_widget a').each(function() {
        $(this).removeAttr('target');
      });
    }(jQuery));
    </script>
    <?php
    }

    Cheers!
    Ismael

    Hey!

    I’m not sure I understand your follow-up inquiry regarding a background or something. Can you please provide a screenshot? I didn’t know that you add the logo as an image element, with that, just remove the logo in the home page’s advance layout builder.

    Regards,
    Ismael

    in reply to: Transparent Header for Posts #454395

    Hey elbnetz!

    Thank you for using Enfold.

    You can set each post to have a transparent header. If you want all posts to automatically have this setting, unfortunately, that is not possible. You have to set it manually.

    Cheers!
    Ismael

    in reply to: Gradient background wanted in header #454392

    Hey!

    Alright. Glad you figured it out. ;)

    Regards,
    Ismael

    Hey parentecoaching!

    Thank you for using Enfold.

    You can edit the includes > loop-index.php file. Use the do_shortcode function: https://codex.wordpress.org/Function_Reference/do_shortcode

    If you don’t want to edit the file directly, you can use the ava_after_content action hook. Add something like this in the function.php file:

    add_filter('ava_after_content', 'ava_after_main_container_mod', 20, 1);
    function ava_after_main_container_mod() {
       if(is_singular('post')) {
    	    $output  = do_shortcode("[av_textblock size='' font_color='' color='']Click here to add your own text[/av_textblock]");
                echo $output;
       }  
    }

    Cheers!
    Ismael

    in reply to: Header with three logo #454388

    Hey!

    You need to add the text on the same text widget:

    <div class="logo-left"><a href="http://www.eiffageconcessions.com/"><img src="http://legrandmag.fr/wp-content/uploads/2015/06/logo.jpg"></a>
    </div>
    
    <div class="logo-right">
    <span>Partenaire de vos projets</span>
    </div>
    

    Add this in the Quick CSS field:

    #header .widget {
      width: 100%;
      padding-top: 0;
      position: absolute;
      top: -130px ;
    left: 0;
    }
    
    .logo-left {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .logo-right {
      position: absolute;
      right: 50px;
    }
    

    Best regards,
    Ismael

    Hi!

    Alright. I can see the ad even on smaller screens.

    Regards,
    Ismael

    Hi!

    Have you tried logging out of WP dashboard? Remove browser cache then login again. You should have access to the files, an ftp or a cpanel account. What is your current hosting provider?

    Cheers! `
    Ismael

    in reply to: Email sender is not present #454373

    Hey serg1o!

    Thank you for using Enfold.

    What do you mean by “the recipient in the field SENDER viewing a score.”? By default, the sender’s email address should be included in the email. Please give us a link to the actual contact form.

    Regards,
    Ismael

    in reply to: Mouseover Bildwechsel bei Portfolio Thumbnails #454369

    Hey tese!

    Thank you for using Enfold.

    Edit the page with the portfolio grid element then set the Link Handling to “AJAX Portfolio”.

    Cheers!
    Ismael

    Hey majklcze1!

    Thank you for using Enfold.

    There is no option for that by default. You can try to add a static content inside a theme hook. Add this in the functions.php file:

    add_filter('ava_after_main_container', 'ava_after_main_container_mod', 20, 1);
    function ava_after_main_container_mod() {
    	 $output  = "<div class='static-content'>";
       $output .= "<h3>Custom Title</h3>";
       $output .= "</div>";
    
       echo $output;
    }
    

    Adjust the style of the content in the Quick CSS field:

    .static-content {
      position: absolute;
      z-index: 1000;
      top: 400px;
      left: 100px;
    }

    Regards,
    Ismael

    in reply to: Adding Yelp Icon #454359

    Hey!

    Alright. Please post the login details here, we would like to check it.

    Regards,
    Ismael

    in reply to: top of page cutting off under menu bar #454358

    Hey!

    The login page is not working: http://www.hawthorncreative.us/wp-login

    Please try to deactivate all plugins.

    Regards,
    Ismael

    in reply to: Layout Element and Header Issues #454355

    Hey umbrella8!

    Thank you for using Enfold.

    1.) On version 3.2., will be released today or tomorrow, you can adjust the background, margins, borders etc of the column layouts.

    2.) Which specific headings are you trying to change? Please provide a screenshot or an actual link to the page.

    Best regards,
    Ismael

Viewing 30 posts - 48,871 through 48,900 (of 67,539 total)