Forum Replies Created

Viewing 30 posts - 21,841 through 21,870 (of 67,485 total)
  • Author
    Posts
  • Hi,

    Thank you for the update.

    This is possible. We can convert the page title to a link, but there’s one problem. Clicking that link will just open the element’s popup template or editor. The user will have to open the browser’s context menu and click the “Open link in a new tab” in order to actually access the link.

    If you want to proceed, edit the config-templatebuilder > aviashortcodes > postcontent.php file and look for this code around line 166:

    $update_template =	'<span class="av-postcontent-headline">{{link}}</span>';
    

    Replace it with:

    $post_link = get_edit_post_link($entry->ID);
    $update_template =	'<span class="av-postcontent-headline"><a href="'.$post_link.'">{{link}}</a></span>';
    

    Best regards,
    Ismael

    in reply to: Adding Top nav color to a "Category Page" #1131172

    Hi,

    Thank you for the update.

    That’s odd. We can’t really tell why that post displays on that category page. We did notice that the site is still running on an older version of the theme, 4.5.5. Please try to upgrade to the latest version of the theme, 4.5.7. The upgrade might help fix the issue.

    Best regards,
    Ismael

    in reply to: Blurry Blog images only on Windows machines #1131171

    Hi,

    Thank you for the update.

    You can use imgur or dropbox for the screenshot.

    Try to adjust the image-rendering property of the img elements.

    img, a img {
    	image-rendering: crisp-edges;
    }

    Default value is optimizeQuality or smooth.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/image-rendering

    Best regards,
    Ismael

    in reply to: Fullwidth slide-show header on mobile #1131170

    Hi,

    Thank you for the update.

    We added the following style in the Quick CSS field to adjust the height of the slideshow on mobile view.

    .avia-slideshow-inner {
    	min-height: 50vh;
    }
    
    .avia-slideshow-inner li, .avia-slide-wrap {
    	height: 100%;
    }
    
    .avia-slideshow li img {
            width: auto;
            max-width: 9999px;
    	object-fit: cover;
    	object-position: center center;
    }

    Screenshot: https://imgur.com/a/STBjJHn

    Best regards,
    Ismael

    in reply to: Pagination doesn't work #1131169

    Hi,

    Thank you for the update.

    Did you add anything to the .htaccess file? Please post the FTP details in the private field so that we can check the files or inspect the issue further.

    Best regards,
    Ismael

    Hi,

    We have already notified the team about this thread. Please wait for their response. You can also create another ticket with a link to this thread so that other moderators can review it.

    Sorry for the inconvenience.

    Best regards,
    Ismael

    in reply to: Masonry Element Picture Preview pixelation #1131163

    Hi,

    Thank you for the update.

    Did you regenerate the thumbnails after the adjustment? There is a “regenerate thumbnail” button at the very bottom of the Settings > Media panel. You can also re-upload the images manually if you prefer.

    Best regards,
    Ismael

    Hi,

    Sorry for the confusion.

    We found these archive software for Mac.

    // https://www.izip.com/
    // https://www.winzip.com/mac/en/zip-for-mac.html

    We’re on a Windows machine, so we couldn’t test it. Please let us know if the extractor works so that we can recommend them to other users.

    Best regards,
    Ismael

    in reply to: Blog tags on bottom of post #1131160

    Hi,

    Edit the filter’s closing tag and define the number of variables or arguments that the hook should accept.

    		    echo trim( $output, $separator );
    		}
    	}
    });
    

    Replace it with:

    		    echo trim( $output, $separator );
    		}
    	}
    }, 10, 2);
    

    Or just set the WP_DISPLAY_DEBUG constant to false in the wp-config.php file to get rid of the warning.

    Best regards,
    Ismael

    in reply to: Contact Form HTML Field #1131158

    Hi,

    Thank you fro the update.

    The HTML element is not an input field, so it won’t get included in the email content, but you can add it manually using the filter above. Are you planning to add multiple forms in a page? If not, then you can use the is_page conditional function to add different text for a contact form in a specific page.

    add_filter('avf_form_message', 'avf_form_message_mod', 10, 3);
    function avf_form_message_mod($message, $new_post, $form_params) {
        if(is_page(23)) {
            $message = "ADD TEXT HERE" . $message;
        }
    
        if(is_page(42)) {
            $message = "ADD ANOTHER TEXT HERE" . $message;
        }
    
        return $message;
    }
    

    Best regards,
    Ismael

    in reply to: DEMO IMPORT #1131154

    Hi,

    Thank you for the update.

    Is it working now? Are you removing the cache every update? You can also deactivate the plugin temporarily while doing some changes in the site.

    Best regards,
    Ismael

    Hi,

    Yes, please post the login details in the private field so that we can check the issue.

    Thank you for the update

    Best regards,
    Ismael

    in reply to: Customize contact form #1131151

    Hi,

    Thank you for the update.

    You can use the following css code to remove the margin at the bottom of the input fields.

    #top .input-text, #top input[type='text'], #top input[type='input'], #top input[type='password'], #top input[type='email'], #top input[type='number'], #top input[type='url'], #top input[type='tel'], #top input[type='search'], #top textarea, #top select {
        margin: 0;
    }

    Best regards,
    Ismael

    in reply to: Change Tab Section with images on Mobile #1131148

    Hi,

    Thank you for the update.

    You can adjust it with css but they won’t exactly fit in the screen. You may have to compromise on the styling a bit or completely remove the tab title. Start with this css code.

    @media only screen and (max-width: 767px) {
    .av-tab-section-image {
        height: 45px !important;
    }
    
    .av-tab-section-image, .av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container {
        width: 45px !important;
    }
    
    .av-tab-section-tab-title-container {
         text-align: left;
    }
    }

    Or just hide the tab section mobile view and use another element to present the content differently.

    Best regards,
    Ismael

    in reply to: Enfold Header/Logo Layout #1131147

    Hi,

    Thank you for the update.

    You can use this css code to adjust the height of the header.

    .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container {
        height: 45px;
        line-height: 45px;
    }
    

    Best regards,
    Ismael

    in reply to: Masonry Galley loading issue – Enfold #1131143

    Hi,

    Thanks. We’ll close this one now. See you on the next thread.

    Best regards,
    Ismael

    in reply to: Post disappeared #1131142

    Hi,

    Thank you for the update.

    Have you tried deleting that particular post directly from the database? We are not really sure how you managed to create a post from a different domain and show it on another. Are you using a plugin for that?

    Best regards,
    Ismael

    in reply to: Help with Post Link Format #1131141

    Hi,

    Thank you for the update.

    Try to set the priority of the new filter from “10” to “100”. That should override the default filter. Change this line:

    add_filter( 'post-format-link', 'avia_link_content_filter_mod', 10, 1 );
    

    .. to:

    add_filter( 'post-format-link', 'avia_link_content_filter_mod', 100, 1 );
    

    Best regards,
    Ismael

    in reply to: Problem with SEO Yoast and Enfold theme. #1131139

    Hi,

    We haven’t really tested that one. It might still work but you may have to enable the Classic Editor interface.

    If you have more questions, please open a new thread.

    Best regards,
    Ismael

    in reply to: distance images top and bottom #1130866

    Hi,

    Great! Glad it worked. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry Element Picture Preview pixelation #1130865

    Hey arallon,

    Thank you for using Enfold.

    The image used in the masonry grid is actually smaller than the one inside the lightbox. You have to increase the default size of the masonry thumbnail as described in the previous thread. Install the plugin, go to the Settings > Media panel and adjust the size of the “masonry” thumbnail. After the adjustment, click update or save, then regenerate the thumbnails.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    in reply to: Maintenance Mode & IP Address support? #1130864

    Hi,

    Thank you for the update.

    1.) No, the site won’t be accessible to crawlers as long as the Settings > Reading > Search Engine Visibility is discouraged.

    2.) That is a filter, so you can use that to disable the force reroute.

    // https://developer.wordpress.org/reference/functions/add_filter/

    add_filter('avf_404_supress_status_code', function() {
       return true;
    });

    This should display the custom pages without setting the status header to 404.

    Best regards,
    Ismael

    in reply to: Events Calendar Pro – Admin Menu Bug #1130862

    Hi,

    Thank you for the update.

    We can see the issue but we’re not sure what’s causing it. Is it working when you do the previous suggestion or by commenting out the hook in the Gutenberg config file? We couldn’t edit it because the Appearance > Editor panel is not accessible.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The magazine by default doesn’t query the events based on the event’s starting date — but the date they were published. You have adjust that. We provided a similar solution on an older thread but it was intended for the blog posts element, so you have to replace the “avia_post_slide_query” filter with “avf_magazine_entries_query”. At the bottom of the thread, the OP provided a much more comprehensive solution. Please check that out.

    // https://kriesi.at/support/topic/entry-slider-event-calender/#post-992681

    Best regards,
    Ismael

    in reply to: Customize contact form #1130833

    Hi,

    Thank you for the update.

    Did you deactivate or change the user account? We can’t access the dashboard using the login details above.

    Best regards,
    Ismael

    in reply to: Shop sidebar below #1130828

    Hi,

    Thank you for the update.

    The sidebar renders properly when we deactivate the “WOOF – WooCommerce Products Filter” plugin. Please contact the plugin author for additional help regarding the issue.

    Best regards,
    Ismael

    in reply to: Custom social media icon issue #1130821

    Hi,

    Thank you for the update.

    We’ve checked the site on MS Edge, Firefox, Firefox Dev, IE and Chrome. We are on Windows 10. The icon displays properly on every browser. Have you tried it on a different computer?

    Best regards,
    Ismael

    in reply to: Contact Form HTML Field #1130817

    Hi,

    Thank you for the update.

    You can use the following filter in the functions.php file to insert additional text to the email message.

    add_filter('avf_form_message', 'avf_form_message_mod', 10, 3);
    function avf_form_message_mod($message, $new_post, $form_params) {
        $message = "ADD TEXT HERE" . $message;
        return $message;
    }
    

    Best regards,
    Ismael

    in reply to: Problems limiting navigation of posts to same category #1130813

    Hey Hella,

    Thank you for using Enfold.

    The “avia_post_nav_settings” filter has been removed, so you have to replace it with the new “avf_post_nav_settings” filter.

    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod' );
    function avf_post_nav_settings_mod( $s ) {
    	$s['same_category'] = true;
    	return $s;
    }

    Best regards,
    Ismael

    in reply to: Enfold Header/Logo Layout #1130806

    Hi,

    Thank you for the update.

    Do you have the original source of the image or banner? Can you edit it? You can extract the logo from the banner and add it separately. Set the banner as the header background and the logo image as the theme’s logo. Adding the banner as a slideshow could work but you will have to add it on every page. Creating a template might help so that you don’t have to configure the settings every time you create a page, but it would be a lot easier if you can just edit the banner file and set those resources in the header.

    Best regards,
    Ismael

Viewing 30 posts - 21,841 through 21,870 (of 67,485 total)