Forum Replies Created

Viewing 30 posts - 47,161 through 47,190 (of 65,998 total)
  • Author
    Posts
  • in reply to: Featured image: custom alignment? #457986

    Hey!

    Set the Blog Style to “Single author, big preview pic” then edit includes > loop-index.php file. Find this code:

    //echo preview image
    		        if(strpos($blog_style, 'big') !== false)
    		        {
    		            if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
    		            if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
    		        }

    Move it above this line:

    echo $content;
    

    Add this in the Quick CSS field:

    .entry-content-wrapper .big-preview.single-big {
      width: 30%;
      float: left;
      margin: 0 20px 20px 0;
    }

    Please create a change log or note about this modification in case you update the theme.

    Cheers!
    Ismael

    in reply to: Cookie Law Info #457980

    Hey SpecThra!

    Thank you for using Enfold.

    Use this in the Quick CSS field to adjust the position and style of the cookie bar:

    #cookie-law-info-bar {
      border: 0;
      font-size: 10pt;
      margin: 0 auto;
      padding: 5px 0;
      text-align: center;
      width: 100%;
      z-index: 9999;
      left: 0;
    }

    Regards,
    Ismael

    Hi!

    You can add this in the Quick CSS field to fix the date picker:

    .gform_wrapper .gfield_date_dropdown_day select, .gform_wrapper .gfield_date_dropdown_month select, .gform_wrapper .gfield_date_dropdown_year select {
      padding-right: 10px !important;
      margin-right: 10px !important;
    }

    Cheers!
    Ismael

    in reply to: AffiliateWP – Tracking does not work #457976

    Hi timber23!

    Thank you for using Enfold.

    Is it working when you switch to a default theme? Please post the website url here, we would like to check it. Did you see any javascript errors? If possible, contact the plugin author for more info regarding the issue.

    Regards,
    Ismael

    in reply to: Add phone and contact details in "Main Head area" #457972

    Hi carmen!

    Thank you for using Enfold.

    You can try to adjust the css code to change the position of the widget.

    #header .widget {
    left: 50%;
    padding-top: 0;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    }

    It’s possible to use negative values in the top position property. Please give us a link to the actual site so that we can check it.

    Regards,
    Ismael

    in reply to: WooCommerce Category Page #457832

    Hey!

    Thank you for using Enfold.

    I’m sorry but you can’t use the advance layout builder to modify the product category pages. You need to create a template file called archive-product.php in the child theme folder.

    Regards,
    Ismael

    in reply to: header and menu styling question #457826

    Hey!

    This is the code that causes the blue gap:

    @media only screen and (max-width: 790px) and (min-width: 768px) {.responsive #main .container_wrap:first-child {
      margin-top: 156px;
    }}

    Please remove it.

    Best regards,
    Ismael

    in reply to: New Column Functions Inspiration #457824

    Hi!

    Please provide a screenshot of the layout that you want. What kind of background do you have in mind? If it is a solid color background, you can add a color section on top of the grid row element. Add a special heading inside the color section.

    Best regards,
    Ismael

    in reply to: Masonry Gallery WPML URL Support #457814

    Hi!

    I checked the page but I still have no idea why it’s not working. Have you tried disabling the plugins? Keep the WPML plugin enabled.

    Best regards,
    Ismael

    in reply to: Tables do not scroll on mobile #457810

    Hey!

    Thank you for the info. Add this in the Quick CSS field:

    table {
      overflow: auto !important;
      display: block !important;
    }

    Regards,
    Ismael

    in reply to: Collapsible Custom Menu? #457791

    Hi!

    Looks like you don’t have have the latest version of the theme, please update to version 3.2. If possible, please use absolute url in the menu items. If you want to change the Menu text, edit the config-templatebuilder > avia-shortcodes > menu.php file. Look for this code:

    $mobile_button = $mobile == "active" ? "<a href='#' class='mobile_menu_toggle' ".av_icon_string('mobile_menu')."><span class='av-current-placeholder'>".__('Menu', 'avia_framework')."</span></a>" : "";
    

    Cheers!
    Ismael

    in reply to: Need to change blog layout #457182

    Hi turistai!

    Thank you for using Enfold.

    You can disable the sidebar for single post entries on Enfold > Sidebar Settings > Sidebar on Single Post Entries.

    Cheers!
    Ismael

    in reply to: Menu auf iPad #457176

    Hey welti!

    Thank you for using Enfold.

    Did you modify any template files, header.php, footer.php etc, in the child theme? If yes, please override the files with newest version from the parent theme folder. If it doesn’t work, try to deactivate all plugins. Maybe one of those plugins is causing the issue.

    Regards,
    Ismael

    Hey!

    Alright. I think the problem is that the max_input_vars local value in the .htaccess file fails to override the master value of the directive which is set to 1000 by default (check the php info > max_input_vars). Please set the max_input_vars value directly in the php.ini file. If you don’t have access to that file, please contact your hosting provider.

    Regards,
    Ismael

    in reply to: Image caption -> show in lightbox #457163

    Hey!

    Please read this whole article or move to the Alt text and title text section. I’m sure it will answer your question: https://yoast.com/image-seo/

    Best regards,
    Ismael

    in reply to: Remove Sidebar on a Custom Post Type #457154

    Hi!

    Did you use the Grid Layout? If yes, please edit config-templatebuilder >avia-shortcodes > postslider.php, look for this code around line 367:

    $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
    

    Replace it with:

    $target =  strpos($entry->post_content, 'http') === 0 ? '_blank' : '';
    					$output .= $thumbnail ? "<a href='{$link}' target='{$target}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";

    Make sure that you place the link at the very beginning of the post content. Use full or absolute url, sample:

    http://www.mypage.com/page
    

    If it works, please create a change log or note for this modification in case you update the theme.

    Cheers!
    Ismael

    in reply to: Problem with Portfolio Overlapping Images #457145

    Hey!

    Oh Ok. That sure is confusing. Just add this in the functions.php file:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    	}, 1500);
    	
    	$(window).load(function () {
    		setTimeout(function() {
    			clearInterval(int);
    		}, 5000);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page. The script will trigger the resize event every 1.5 seconds forcing the masonry images to position correctly.

    Best regards,
    Ismael

    in reply to: Responsive Photo Gallery Pro mit Enfold nicht kompatibel #457144

    Hi Catmandu39!

    Thank you for using Enfold.

    Your website is not loading properly when I checked it. Please make sure that you’re using Enfold 3.2 on WordPress 4.2.2. Deactivate all plugins then test it again. Please contact the plugin author regarding the Responsive Photo Gallery Pro plugin.

    Regards,
    Ismael

    in reply to: Portfolio ordering for categories #457141

    Hi!

    I created two portfolio items in your installation and then applied the “Test” category on both. Please check the post navigation on this page: http://future-forms.com/portfolio-item/test-a/

    It only filters Test A and Test B portfolio items.

    Best regards,
    Ismael

    in reply to: Permalinks structure #457137

    Hey mindSCOPE Staffing Software!

    Thank you for using Enfold.

    You can use this plugin to manually edit the post url: https://wordpress.org/plugins/custom-permalinks/

    Activate the plugin, edit a post then set the Permalink.

    Regards,
    Ismael

    Hey dburton77!

    Thank you for using Enfold.

    Actually, that is the default behavior of the grid layout on screen width lesser than 768px. If you want, we can set the grid to a single column:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even {
      clear: both;
      margin-left: 0;
      width: 100% !important;
    }}

    Best regards,
    Ismael

    in reply to: Featured image width #457126

    Hey!

    Thank you for using Enfold.

    Add this in the Quick CSS field to adjust the width of the featured image:

    .small-preview img, .big-preview img {
      width: 100%;
    }

    Regards,
    Ismael

    in reply to: Enfold Responsive Mobile Menu Height #457125

    Hi ramirezo!

    Thank you for using Enfold.

    I checked your site and it loads the first time but when I resized the browser to check the mobile header then refresh the page the preload gets stucked. You have a very old version of WordPress which is not compatible with Enfold 3.2. Please upgrade WordPress to 4.2.2.

    Best regards,
    Ismael

    in reply to: Darstellungsfehler Firefox (Fullwidth Slider) #457123

    Hi Coco!

    Thank you for using Enfold.

    The text or caption box in the slider looks the same on Chrome and Firefox when I checked it. Can you please provide a screenshot of the issue? Use imgur or dropbox.

    Regards,
    Ismael

    in reply to: Move transposh widget in header area #457119

    Hey!

    Add this in the Quick CSS field:

    .html_header_top.html_bottom_nav_header #header_main {
      z-index: 1000;
    }

    Cheers!
    Ismael

    in reply to: Adjust size of small preview pic not working #457114

    Hi!

    Did you change the size of the square thumbnail in the simple image size plugin? The default is 180x180px, in your installation, looks like it is using the original thumbnail size. You can set the width and height to 100% but it will distort some of the images:

    .small-preview img, .big-preview img {
      width: 100%;
      height: 100%;
    }

    Cheers!
    Ismael

    in reply to: How to Adjust Title / Excerpt / Read more on Post Slider #457100

    Hi Vicken!

    Thank you for using Enfold.

    What do you mean by “hover over it”? Please provide a screenshot of what you’re trying to do. Use imgur or dropbox for the screenshot. If you want to modify the post slider element, you can find the template on config-templatebuilder > avia-shortcodes > postslider.php file.

    Cheers!
    Ismael

    in reply to: Partner/Logo Element Alignment #457097

    Hey inspirationguelph!

    Thank you for using Enfold.

    Please give us a link to the page with the logo partner element. We want to check it. Try to add this to the Quick CSS field:

    #top .avia-logo-element-container img {
    margin: 0;
    }

    Best regards,
    Ismael

    in reply to: Limit no of reviews or pagination #457077

    Hi!

    1.) The code will only limit the number of items but it will not render a pagination in the reviews tab. You can’t add a pagination there, technically you can but it’s not included by default. You need to modify the reviews tab template but that is not something we can provide here. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    Using a plugin is another factor, the snippet above might not work. Please contact the plugin author regarding that. I’m sure they can give you snippets or direct you to the correct files in order to limit the review items.

    2.) Use this in the Quick CSS field to remove the related products inside the tab:

    #jp-relatedposts {
      display: none !important;
    }

    Cheers!
    Ismael

    in reply to: Tables do not scroll on mobile #457075

    Hey!

    Alright. Is this the correct website? http://netinfoweb.net/strovolos/archiki-selida/dimotiko-simvoulio/meli-simvouliou/

    The site is currently on maintenance mode. Please give us a temporary login details so that we can see the actual page. Remove the dot on the selector:

    table {
    overflow: scroll;
    }

    Best regards,
    Ismael

Viewing 30 posts - 47,161 through 47,190 (of 65,998 total)