Forum Replies Created

Viewing 30 posts - 54,361 through 54,390 (of 67,491 total)
  • Author
    Posts
  • in reply to: Little bug Easy slider on Safari / Impact on font weight #343871

    Hey!

    Sorry for the delay and thank you for the info.

    I can actually reproduce the “jump” issue on Chrome. This fix seems to work. Please add this on Quick CSS:

    ul.avia-slideshow-inner {
    height: 462px !important;
    }

    Cheers!
    Ismael

    in reply to: Glitches in Enfold? #343870

    Hey!

    The default sidebar navigation is triggered when you set a page hierarchy. It is actually not a random page. They are nested child pages of a specific page. Did you set a parent page for these pages?

    Best regards,
    Ismael

    in reply to: Mega Menu Bug #343869

    Hi!


    @AnimationInk
    : Please ask your host to increase the max_input_vars values to at least 3000. It is currently set to 1000. This should fix the menu limit issue. Refer to this thread for more info: https://wordpress.org/support/topic/menu-size-limit

    Best regards,
    Ismael

    in reply to: Changing lightbox size for iframe content #343867

    Hi!

    Thank you for the info.

    Please use this on Quick CSS or custom.css to adjust the size of the lightbox container:

    .mfp-iframe-holder .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 90% !important;
    }

    Regards,
    Ismael

    Hi!

    Thank you for the info.

    On what specific browser does this issues usually occur? I checked the site on Chrome and Firefox a few times but I can’t reproduce the issue as described on the screenshot. I don’t think there will ever be an upload feature on the forum. It will consume a lot of the domain space and will considerably slow down the site. I personally don’t use an imgur account, you can just upload any image you want then get the imgur image url.

    Regards,
    Ismael

    in reply to: Function for adding additional head html #343865

    Hi!

    Thank you for using Enfold.

    @Tung Do: Thanks! Very helpful. :)


    @itchybrain
    : Aside from the suggestions above, you can use the wp_head action hook function. Regarding the google fonts, the theme have a particular filter for that. Use this on functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }

    Change the google font name and specify the correct font weights.

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #343864

    Hi!


    @talelie
    : If possible, please upload the file on mediafire or dropbox then post the share link here. Thank you. :)

    Best regards,
    Ismael

    in reply to: Feature image and posts title not showing #343862

    Hey!

    I’m sorry but we don’t provide support for this particular issue. We really don’t recommend the advance layout builder for post that’s why it is disabled by default. You need to manually add the featured image and post title now.

    Regards,
    Ismael

    in reply to: Events in Ascending Order #343861

    Hey!

    Yes, unfortunately, for now the magazine element can only fetch the event posts. Please feel free to open a request or vote for this feature on our Feature Requests.

    Regards,
    Ismael

    in reply to: Display Magazine posts in a random order #343860

    Hey!

    No, unfortunately, it’s not possible to specify data range. Instead of modifying the magazine.php file, please add this on functions.php:

    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_custom_query');
    
    function avf_magazine_entries_custom_query ( $query ) {
    $query['orderby'] = 'rand';
    $query['order'] = 'DESC';
    return $query;
    }

    Refer to the wp codex for more order and orderby parameters.

    Best regards,
    Ismael

    in reply to: Complex Footer design #343859

    Hey!

    Thank you for using Enfold.

    For the upper or logo part, you can take @Sandie’s advice. Use the advance layout builder then insert a color section with partner/logo element. Save this as a template. Apply the template on every page that you’re going to create. The bottom section of the footer looks simple enough. Go to Enfold > Footer then set the Footer Columns to 4. Use the Footer – Columns widget areas to modify each columns.

    Cheers!
    Ismael

    Hi!

    Thank you for the info. Edit the post then look for Layout > Sidebar Setting. Select the widget area with the mentor search options. The category pages work as a default archive page. You can’t create pages for specific categories unless you removed any instances of the default category links and create your own category navigation. Honestly, we haven’t tested the plugin. Please contact the plugin author for more info.

    Best regards,
    Ismael

    in reply to: Mega menu width and column – not answered #343857

    Hi!

    I’m sorry but the mega menu column widths are calculated dynamically on avia.js. Unfortunately, this particular request or modification is more than what we can offer as a support team. Please hire a freelance developer to modify the mega menu scripts or visit Envato Studio or Werkpress for further modifications.

    If you have any issues related to the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Can not communicate with pinterest #343853

    Hey!

    I’m sorry but like I said, this particular task includes a third party script that we usually don’t provide support for. I visited the validator and they don’t allow you to validate the home page. Please ask the script author or hire a freelance developer to configure the rich pins api.

    Cheers!
    Ismael

    in reply to: google fonts without child theme #343852

    Hey!

    I’m sorry but code is wrong, specifically the single quotations. Please add this below line 16 of functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Alef'] = 'Alef:400,700';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Alef'] = 'Alef:400,700';
    return $fonts;
    }

    Cheers!
    Ismael

    in reply to: Open all toggles at once (with sorting support) #343851

    Hey wieslander!

    Thank you for using Enfold.

    Please add this on functions.php:

    function add_custom_script_3(){
    ?>
    <script>
    (function($){
    $(window).load(function() {
    	var toggler    = $('.toggler');
    	var togglewrap = $(toggler).next();
    	$(toggler).each(function(index, element) {
            $(togglewrap).css({
    			'display'   : 'block',
    			'position'  : 'static',
    			'visibility': 'visible',
    			'width'     : 'auto',
    			'z-index'   : 1,
    		});
    		
    		$(this).addClass('activeTitle');
        });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script_3', 1);

    The opening of the toggler will be a bit delay but you can now use the accordion like the default element.

    Best regards,
    Ismael

    in reply to: Feld für Link bei Beiträgen #343850

    Hi clicktext!

    Thank you for using Enfold.

    Just add the url on the text editor. The post link format will automatically parse the url and apply it on the post title.

    Best regards,
    Ismael

    Hi!


    @vegaspro
    : I didn’t actually do anything. I activated WooCoomerce and the Menus panel goes back to normal. Regarding the thumbnail issues, please go to WooCommerce > Settings > Products > Product Image Sizes section. Adjust the Catalog Images size then enable the Hard Crop? parameter. Upload the featured image again or regenerate the thumbnails.


    @Kris1711
    : It’s alright. :)

    Regards,
    Ismael

    Hi!


    @fichtenelch
    : Thanks for confirming that the sidebar issue is non-existent. If possible, please stick to your own thread. :)


    @brian7454
    : Please download the latest version 3.0.2 from your themeforest account then update the theme via FTP. Remove all sidebar customization including filter, hooks on functions.php and any column, grid, container css width modifications. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    If you’re worried about messing up the site, you can create a test site first. Let us know if the pages with sidebar are broken.

    Regards,
    Ismael

    in reply to: The Events Calendar 404 page #343472

    Hey!

    I think it is spot on. If there are no events on the actual date then it should return a 404 not found error. Besides, when I visit your website, the first thing that I will do when I want to see the events is click the “Calendario” menu item. I will end up on the calendar overview page. I can’t clicked on dates without events on them not unless I manually search the date or set the view as “Day” which is an unlikely scenario because it will take too much time to toggle through days of the month just to find the event. I would rather view the calendar by month which is faster. IMO, there’s no reason to worry about the 404 error pages.

    Best regards,
    Ismael

    in reply to: Events Calendar – Prev Events #343469

    Hey prayaga!

    Thank you for using Enfold.

    Can you please provide the link to the actual page? The previous and next events navigation is still there. You can find it on top of the calendar right below the events search field.

    Cheers!
    Ismael

    Hey!

    Thank you for the info.

    Please save the page template then create a test page using the same template. Move the section that is causing the issue. We would like to check it.

    Cheers!
    Ismael

    in reply to: Issues with permalinks #343465

    Hi!

    Looks like we have reached an impasse. I searched different kinds of forums regarding this issue and the solution above is the best that I can think of. Unfortunately, it didn’t work. Question.. Did you place the wp site on a different folder aside from public_html or root directory? Please replace the redirect code with this:

    RedirectMatch 301 ^/(\d+)$ https://palofit.com/?p=$1
    

    I tested this on my own installation and all post with post id url redirects to the actual post url.

    Regards,
    Ismael

    in reply to: Masonry as Category Overview #343457

    Hi heufti65!

    Thank you for using Enfold.

    No, regretfully, this is not possible yet without major modification on the archive.php file. Unfortunately, this particular request or modification is more than what we can offer as a support team. For further modifications, please hire a freelance developer or visit Envato Studio or Werkpress. You can also vote or post a request 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.

    Best regards,
    Ismael

    Hi!

    Alright. They are different because the blog style single author, small picture have two different layouts, one for pagew with sidebar and another for pages without a sidebar. Unfortunately, changing the layout of the blog style will require a major modification on the theme or at least the css styling. This task is simply beyond the scope of support and is not a theme related issue. Please hire a freelance developer or find a third party plugin that coincide with the theme. For further modifications, please visit Envato Studio or Werkpress.

    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.

    Regards,
    Ismael

    in reply to: How to resize images in bulk? #343454

    Hey!

    Please give us a link to an actual post that have images with sizes lesser than the post content container. Try this on Quick CSS or custom.css to show the actual size of images inside the post content:

    .single .entry-content-wrapper a img {
    width: auto;
    }

    Cheers!
    Ismael

    in reply to: Events in Ascending Order #343444

    Hey!

    Thank you for using Enfold.

    Please add this on functions.php to sort the magazine element:

    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_custom_query');
    
    function avf_magazine_entries_custom_query ( $query ) {
    $query['orderby'] = 'date';
    $query['order'] = 'DESC';
    return $query;
    }

    Refer to the wp codex for more order and orderby parameters.

    Cheers!
    Ismael

    Hi!

    Thank you for the screenshot. I can’t reproduce the issue on my installation. Whenever I enter a focus keyword, it returns Yes plus the keyword instance number. The note below the warning says that search engines can still fetch the content of the site so there’s no reason why it will affect the SEO rankings. Anyway, we’re not SEO gurus so I’m still not sure why the warning occurs in the first place. I’ll ask Kriesi to take a look. If possible, please post a ticket on the WordPress SEO forum. Any info regarding the issue that they can throw at us will definitely help.

    Regards,
    Ismael

    in reply to: Issues / Update from Enfold 2.9.2 to 3.0.2 #343431

    Hi Marie!

    Thank you for using Enfold.

    1.) The logo that you’re using is a bit small 160 × 90 px. Minimum size for the desktop view should be at least 178 x 100 px.

    2.) You added a custom css that breaks the padding of the title container:

    #top .title_container .container {
    padding: 0px 0px 6px 0px;
    min-height: 60px;
    }

    Code should be replace with:

    .title_container .container {
    padding: 0px 50px 6px 50px;
    min-height: 60px;
    }

    3.) I’m sorry but I can’t see the issue on safari. This is what it looks like:

    Regards,
    Ismael

    in reply to: iPhone 6 issues? #343428

    Hi developerFD1!

    Thank you for using Enfold.

    Can you please provide a screenshot of the iPhone 6 issue? The site looks good on mobile device emulation. I’ll ask the rest of the support team to take a look.

    Best regards,
    Ismael

Viewing 30 posts - 54,361 through 54,390 (of 67,491 total)