Forum Replies Created

Viewing 30 posts - 19,021 through 19,050 (of 67,463 total)
  • Author
    Posts
  • in reply to: different logo for the woocommerce pages #1190375

    Hi,

    Thank you for the update.

    Try to change the logo using the avf_logo filter instead of css.

    
    function avf_change_logo($logo)
    {
        if(is_archive() || is_shop()) {
            $logo = "http://site.at/images/logo.png";
        }
        return $logo;
    }
    add_filter('avf_logo','avf_change_logo');
    

    Please don’t forget to adjust the logo URL.

    Best regards,
    Ismael

    in reply to: Bloglayout #1190372

    Hi,

    Thank you for the update.

    You can add this snippet in the functions.php file to move the title above category or post title.

    //-------------------------
    // JS - Meta after title
    // ------------------------
    
    function ava_move_meta_after_title(){
    ?>
     <script>
     jQuery(".single .post-entry").each(function(i) {
            var postTitle = jQuery(this).find('.av-heading-wrapper');
            var metaInfo =  jQuery(this).find('.post-meta-infos');
            jQuery(metaInfo).insertBefore(postTitle);
           });
     </script>
    <?php
    }
    add_action('wp_footer', 'ava_move_meta_after_title');
    

    You can edit the file in the Appearance > Editor panel or directly in the server via FTP.

    Best regards,
    Ismael

    in reply to: color section not matching in other sections #1190369

    Hi,

    Sorry for the delay. The site is not loading properly on our end. Did you move the site? The login details in the private field were also deleted.

    Best regards,
    Ismael

    in reply to: Layerslider will not show me my sliders #1190368

    Hi,

    It’s probably the same as the issue reported in the following threads.

    // https://kriesi.at/support/topic/layer-slider-fails-on-enfold-update-4-6/#post-1159740
    // https://kriesi.at/support/topic/empty-list-slider-in-layer-slider/#post-1186261

    You have to manually create the “group_id” column in the “_layerslider” table in the database to fix the slider query.

    Best regards,
    Ismael

    in reply to: Blog Overview Page Style Support #1190364

    Hi,

    Thank you for the update.

    This is the same exact style of the read more button used in the estably site.

    .read-more-link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 220px;
    padding: 15px 20px;
    background-color: #c3a069;
    border: 1px solid #c3a069;
    border-top-color: rgb(195, 160, 105);
    border-right-color: rgb(195, 160, 105);
    border-bottom-color: rgb(195, 160, 105);
    border-left-color: rgb(195, 160, 105);
    display: block;
    min-width: 0;
    text-align: center;
    border-radius: 4px;
    font-family: DINPRO,Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #c3a069;
    -webkit-transition: all .3s cubic-bezier(.4,0,.2,1);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    -webkit-box-shadow: 0 20px 40px rgba(49,50,54,.3);
    box-shadow: 0 20px 40px rgba(49,50,54,.3);
    color: #6d6b76;
    background-color: hsla(0,0%,100%,0);
    border-color: #6d6b76;
    -webkit-box-shadow: none;
    box-shadow: none;
    }

    We just replaced the selector with the class name used by the theme for the read more link element. You can add the code in the style.css file or the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Open contact form on portfolio page #1190362

    Hey makni1,

    Thank you for the inquiry.

    That is not possible out of the box, so you may have to install a third party extension to accomplish something like it. Unfortunately, we don’t know of any plugin that has that specific functionality. Did you see this feature somewhere else? Can you give us a screenshot or a link to a page?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    That is the search results page and the s or search parameter is empty, so it doesn’t return any searched results.

    What do you mean by “next events”? If you want to display additional info in the search page, then you have to modify the search.php template.

    Best regards,
    Ismael

    in reply to: Category boxes with images bottom of post #1190357

    Hi,

    2.) Did you change the Blog Layout to Grid Layout? You can find the setting in the Enfold > Blog Layout panel. Or use this snippet in the functions.php file to adjust the style of the archive pages.

    
    function avia_change_category_blog_layout($layout, $context){
        if($context == 'archive') $layout = 'blog-grid';
        return $layout;
    }
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    

    3.) Are you using the default editor for your posts? If you are, then you have to modify the single.php file to display the categories below the content or below the related posts section. In the file, look for this code:

    //show related posts based on tags if there are any
    	                        get_template_part( 'includes/related-posts');
    

    Below, you can add the function to get the available categories.

    // https://developer.wordpress.org/reference/functions/get_categories/#user-contributed-notes

    Best regards,
    Ismael

    in reply to: Social media icons appearance on computer & mobile #1190353

    Hi,

    Sorry for the delay. We added the following code in the Quick CSS field to adjust the font size of the caption title.

    .avia-caption-title {
    	font-size: 1em;
    }

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Dynamic_avia folder too big #1190338

    Hi,

    Thank you for the update.

    We are able reproduce to the issue, which seems to be intermittent, but it does happen when the compression is enabled. We disabled the option for now and installed the Autoptimize plugin instead. This is the same as having the theme’s file compression enabled with additional options.

    Best regards,
    Ismael

    in reply to: Image captation below image #1190332

    Hi,

    Thank you for the update.

    We tried to access the file server using the account above but it didn’t work. We used SFTP. Please check the login info.

    Best regards,
    Ismael

    in reply to: Failed to load javascript resource #1190327

    Hi,

    We can’t access the database using the URL above. It’s not loading properly.

    Do you still have the original or development version of the site? You can just delete the current database in the live domain and import the development version of the database. But this time, try use a tool like WP Migrate DB to properly transfer the database from staging to production.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Fixed backgrounds are not fully supported on iOS same as the parallax effect. Please check this page for more info about the background-attachment property.

    // https://caniuse.com/#feat=background-attachment > Known Issues

    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details

    Best regards,
    Ismael

    in reply to: No product quantity in Enfold shop mobile cart #1190320

    Hi,


    @sensufaktur
    : Thanks for chiming in. Please open a new thread and post the necessary details in the private field so that we can inspect the issue. For the meantime, try to disable the plugins or extensions temporarily to rule out any incompatibility issues.

    Best regards,
    Ismael

    in reply to: Column and Product Count for Specific Category Pages #1190319

    Hi,

    You should add the snippet in the functions.php file. And don’t forget to adjust the category name. Let us know if it works.

    Best regards,
    Ismael

    in reply to: Privacy & Cookies – Enfold Documentation #1190317

    Hi,

    Look for the files that are named avia-footer-scripts and avia-merged-styles in the dynamic_avia folder.

    Best regards,
    Ismael

    in reply to: GDPR compliance for marketing cookies #1190316

    Hi,

    Thank you for the update.

    Which “+” link button are you referring to? Please note that you have to manually create a new tab for the custom cookie in the Modal Popup Window Content section. It will not be automatically created.

    Please post the login details to the site so that we can create an example.

    Best regards,
    Ismael

    in reply to: Magazine tabs not working anymore #1190314

    Hi,

    You have to manually upgrade the theme via FTP this time because the the latest version is not reflected in the auto updater panel. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Product List showing images when not supposed too #1190311

    Hi,

    Thank you for the info.

    We were able to access the file server but the current directory is empty. Please check the FTP account permission.

    Best regards,
    Ismael

    in reply to: on hamburger menu label and html tags #1190309

    Hi,

    Ah yes. Sorry about that. There is this block of code in the js > avia.js file around line 1043:

    $('<a href="'+mega_title_link+'"><span class="avia-bullet"></span><span class="avia-menu-text">' +mega_title.text()+ '</span></a>').insertBefore(new_ul);
    								mega_link = new_li.find('>a');
    
    

    It is using the mega_title text instead of html.

    We can replace it with the html function to preserve the tags.

    mega_title.html()
    

    Best regards,
    Ismael

    in reply to: Instagram has returned invalid data #1189974

    Hi,

    Thank you for the inquiry.

    The instagram widget is going to be removed in the latest version of the theme and we will instead provide a native integration of the Smash Balloon Social Photo Feed plugin, in which you will be required to generate a new access token in order to use the plugin properly. Please check the page below.

    // https://smashballoon.com/instagram-feed/token/
    // https://smashballoon.com/updating-your-instagram-access-token/

    You will have to use the actual plugin for now.

    // https://wordpress.org/plugins/instagram-feed/

    Best regards,
    Ismael

    in reply to: Dynamic_avia folder too big #1189964

    Hi,

    but the web fails to change from one page to another.

    We actually had to reload the pages or go to another because that’s the only way to regenerate the compressed files and to test if they will still be duplicated. We didn’t encounter that issue. The filter should not affect the site in any way aside from removing the timestamp in the merged files.

    Please revert back to v4.7.3 so that we can test it again.

    Best regards,
    Ismael

    in reply to: Autoplay Youtube Video in Lightbox #1189961

    Hi,

    Thank you for the update.

    We tested the site on Firefox Browser Developer 74.0b9 (64-bit) on Windows 10.

    But this comment helped:
    https://stackoverflow.com/a/50213665

    That’s good to hear. Is it working on your end now?

    Best regards,
    Ismael

    in reply to: Image captation below image #1189959

    Hi,

    For some reason, the script is not working. It fails to insert the caption after the image. We tried to edit the script via the Appearance > Editor panel, but we get an error whenever we attempt to save the changes. Please post the FTP details in the private field so that we can access the server.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Open iframe in lightbox / modal window #1189957

    Hi,

    You can use this css code to adjust the maximum width of the popup or mfp content.

    .mfp-iframe-holder .mfp-content {
    	max-width: 90vw;
    }
    

    Best regards,
    Ismael

    in reply to: Issues with Events Calendar and Events Calendar Pro #1189955

    Hi,

    Yes, that’s what you have to do. You can also wrap the remove_action inside a after_setup_theme hook just to be sure that it actually removes the action from the theme.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Failed to load javascript resource #1189954

    Hi,

    This must be somewhere from the parent theme..?

    It is definitely an issue with the database because that is where all the entries (options, images, posts, pages etc) come from. The theme just displays whatever the database contains.

    We tried to login to the database using the info above, but it doesn’t work. Please post the login info for WP, FTP and the database so that we can check everything.

    Best regards,
    Ismael

    in reply to: enfold horizontal gallery custom links not working #1189949

    Hi,

    We explained why it happens in the following thread.

    // https://kriesi.at/support/topic/link-masonry-image-to-specific-url/#post-1189945

    Please create your own thread so that we can check the site if necessary.

    Best regards,
    Ismael

    in reply to: Link masonry image to specific URL #1189945

    Hi,

    That is the default behavior on mobile view. Because there is no hover state, the first tap will trigger the overlay and the second one will open the link. You have to disable the overlay if you prefer to trigger the link on the first tap.

    If you need help, please open a new thread and post the details in the private field so that we can check the page with the masonry element.

    Best regards,
    Ismael

    Hi,

    You can set the Slider Settings > Layout > Dimensions to Full Size and make sure that Mode is set to Hero Scene. This should create a full screen slider that inherits the size of the viewport.

    Best regards,
    Ismael

Viewing 30 posts - 19,021 through 19,050 (of 67,463 total)