Forum Replies Created

Viewing 30 posts - 24,721 through 24,750 (of 66,166 total)
  • Author
    Posts
  • in reply to: Drop down menus and cart are transparent, recurring issue #1032825

    Hi,

    I don’t really think this is purely cause by the theme, so I’m sad to hear that you are considering getting another theme. I don’t really think it’ll make any difference. We actually managed to fix the initial issue but you didn’t reply for months, so I just assumed that everything is working properly in your site because you didn’t bother to reply.

    Our last reply on August 30, 2018: https://kriesi.at/support/topic/need-immediate-help-please-enfold-conflicting-with-wp-admin-login-error-code/page/2/#post-1003321

    Best regards,
    Ismael

    Hi,

    Yes, it’s possible. Use this css media query to disable it on mobile devices only.

    @media (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 1), (-webkit-min-device-pixel-ratio: 2)  {
    #top .flex_cell {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    }

    Best regards,
    Ismael

    in reply to: problem with Google Maps #1032818

    Hi,

    I can still see the same error in the console.

    CMMRM_Tooltip is not defined
        at index.php?hm_custom_js_draft=1&ver=1542064505:38 index.php?hm_custom_js_draft=1&ver=1542064505:38 Uncaught ReferenceError: 
    

    I’m not really sure what CMMRM is. Please disable the plugins and third party scripts temporarily.

    Best regards,
    Ismael

    in reply to: Contact form spam with privacy policy message = false #1032817

    Hi,

    It is working properly on my installation. Please create a new ticket/thread with the site url and login credentials. We’ll check it there.

    Best regards,
    Ismael

    in reply to: Instagram Widget Not working in Footer #1032816

    Hi,

    Thanks for the update.

    I can’t modify the files from the Appearance > Editor file. Please post the FTP details in the private field. Or follow these steps.

    // https://kriesi.at/support/topic/instagram-widget-did-not-return-200-specify-username/#post-1031501

    Best regards,
    Ismael

    in reply to: Vimeo video doesn;t work #1032815

    Hi,

    Thanks for the update. I’m getting this error in the console but I don’t really think it has anything to do with the issue.

    forms.convertkit.com/354862?v=6:1 Failed to load resource: the server responded with a status of 500 ()
    

    Can we access the file server? Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Adding pages using the WordPress Rest Api #1032812

    Hi,

    You can use this to create the element state:

    Avia_Builder()->element_manager()->get_elements_state( 'post', $mypost->ID );
    

    And build the shortcode tree.

    
    ShortcodeHelper::clean_up_shortcode( $_POST['_aviaLayoutBuilderCleanData'], 'content' );
    

    Final code may look like this:

    
     foreach ( $myposts as $mypost ) :
        $content = $mypost->post_content;
         $tree = ShortcodeHelper::build_shortcode_tree( $content );
        AviaBuilder::set_alb_builder_status( 'active', $mypost->ID );
        AviaBuilder::save_posts_alb_content( $mypost->ID, $content );
        Avia_Builder()->element_manager()->get_elements_state( 'post', $mypost->ID );
        ShortcodeHelper::clean_up_shortcode( $_POST['_aviaLayoutBuilderCleanData'], 'content' );
        update_post_meta( $mypost->ID, '_avia_builder_shortcode_tree', $tree );
    endforeach;
    

    Best regards,
    Ismael

    in reply to: comments and discussion order change. #1032806

    Hi,

    I tried to adjust the options in the Settings > Discussions panel but it’s not working. I also tried this filter in the functions.php file but it still doesn’t work.

    // show newest product reviews on top
    add_filter( '<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_product_review_list_args', '<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_product_review_list_args_newest_first' );
    function <a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_product_review_list_args_newest_first($args) {
        $args['reverse_top_level'] = true;
        return $args;
    }

    Best regards,
    Ismael

    in reply to: akkordeon slider "loading" animation #1032440

    Hi,

    I see. This should help.

    #top .aviaccordion.av-animation-active .aviaccordion-slide, #top .aviaccordion-title-on-hover .aviaccordion-preview {
        -webkit-transition: none;
        transition: none;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update. The site just redirects to the “coming soon” page. I tried to disable the maintenance mode in the theme options but it’s still the same.

    Best regards,
    Ismael

    in reply to: Breadcrumbs not showing all grandparent/parent/child #1032437

    Hi,

    Try to re-arrange the trail on this line.

    $trail = array( 0 => $home, 1 => $link, 2 => $trail[1], 3 => $trail[2], 'trail_end' => $last );
    

    $link goes to array key 2 and $trail[1] to key 1 etc.

    Best regards,
    Ismael

    in reply to: Calendar Pro | single-event.php #1032435

    Hi,

    That is a javacript code wrapped in php hook, so I’m not sure how you get that error. Can you give us a screenshot? Try this code instead.

    add_action('wp_footer', 'ava_color_closed_event', 9999);
    function ava_color_closed_event() {
        ?>
        <script>
            (function() {
                const et = document.querySelector('.tribe-events-single-event-title');
                const etm = document.querySelector('.tribe-events-month-event-title a');
                if( ( et && et.textContent == 'Closed' ) || ( etm && etm.textContent == 'Library Closed' ) ) {
                    etc = et ? et : etm;
                    etc.style.color = '#c20b1a';
                }
            })();
        </script>
        <?php
    }

    Best regards,
    Ismael

    in reply to: Sidebar below content desktop version #1032433

    Hi,

    You may need to adjust the Blog-Layout settings in the Enfold > Blog-Layout panel so that it’s the same as the style in your main blog page.

    Best regards,
    Ismael

    in reply to: Mobile usability problems in Enfold #1032431

    Hi,

    Try to disallow those directories in your robot.txt file.

    // http://www.robotstxt.org/robotstxt.html

    Those are admin directories or files that are use in the backend, so I’m not sure how google managed to crawl it.

    Best regards,
    Ismael

    • This reply was modified 6 years, 8 months ago by Ismael.
    in reply to: Google maps API not working … #1032430

    Hi,

    I know I’ve been asking this over and over throughout the thread. Did you add the “https://iavsd2019.se/*&#8221; as an allowed http referrer? I’m still seeing the same error in the console..

    Google Maps JavaScript API error: DeletedApiProjectMapError maps.googleapis.com/maps/api/js?v=3.30&key=API KEY HERE-YV-XdmM:51
    https://developers.google.com/maps/documentation/javascript/error-messages#deleted-api-project-map-error

    Please check your functions.php file and remove/disable every functions or codes that are related to google maps.

    Best regards,
    Ismael

    in reply to: Customising Autoresponder using multiple contact forms #1032429

    Hi,

    Did you add any html tags to the custom autoresponder message? Please make sure that the tags are closed properly.

    Best regards,
    Ismael

    in reply to: Why my review show not include the content #1032428

    Hi,

    I would like to apologize for the late response. Did you remove the tabs? Please create a test product page with the tabs and post the login details in the private field. We would like to check it.

    Best regards,
    Ismael

    in reply to: Individual Read more Button #1032425

    Hi,

    Did you modify the categories? Please open a new thread with the site url and the link to the actual page with the issue.

    Best regards,
    Ismael

    in reply to: Learndash #1032424

    Hi,

    The login page looks broken. The login button is missing and I can’t fill in the fields. Are you doing anything on the site?

    Best regards,
    Ismael

    in reply to: Galleri shows thumbnails, though unchecked.. #1032423

    Hi,

    Did you set the “Gallery Style” to the third option? I would like to check the site but my connection is a little slow today.
    You can use this css code temporarily if you want to hide the thumbnails.

    .avia-gallery-thumb {
        display: none;
    }

    Best regards,
    Ismael

    Hi,

    There’s an invalid code here.

    table.cart img { width: 200px !important ;}
    }
    

    We remove the extra curly brace. Please test the css code again.

    Best regards,
    Ismael

    Hi,

    I would like to apologize for the late response. If you have a test page, we’ll try and check the issue.

    Best regards,
    Ismael

    in reply to: z-index on side navigation #1032418

    Hi,

    Thanks for the info.

    You should increase the z-index value of the section where the navigation is located. That is the “company” section.

    #company {
     position: relative;
     z-index: 1000;
    }

    Best regards,
    Ismael

    in reply to: Google api #1032416

    Hi,

    Did you disable the map element/script before? You got this code in the functions.php file:

    add_filter('avf_load_google_map_api_prohibited', 'avf_load_google_map_api_prohibited_true', 10, 1);
    function avf_load_google_map_api_prohibited_true($prohibited) {
    	$prohibited = true;
    	return $prohibited;
    }

    Please disable it temporarily.

    Best regards,
    Ismael

    in reply to: Nested Subpages #1032415

    Hi,

    That is not available in the theme but you can find the sidebar navigation function in the functions-enfold.php file. Look for the “avia_sidebar_menu” function. Maybe, you can modify the function for your custom posts.

    Best regards,
    Ismael

    in reply to: Change position of scroll to top button #1032414

    Hi,

    Thanks for the update. That is the default style of the testimonial slider. You can use this css code if you want to recreate the “speech bubbles” style.

    #top .av-large-testimonial-slider .avia-testimonial-meta {
        background: #fcfcfc;
        border: 1px solid #e3e3e3;
        padding: 0 30px 20px 30px;
    }
    
    #top .av-large-testimonial-slider .avia-testimonial-arrow-wrap {
        display: block;
        bottom: -10px;
        top: auto;
    }

    Best regards,
    Ismael

    in reply to: Floating frame breaks masonry & scrolling & other usability #1032412

    Hi,

    Did you remove the “Boek afspraak” button? I can’t find it anywhere in the site. Do you want to open the widget inside a lightbox?

    Best regards,
    Ismael

    in reply to: PHP warning message in admin panel after 4.5 update #1032410

    Hi,

    Glad it’s fixed. We’ll close the thread now.

    Have a nice day! :)

    Best regards,
    Ismael

    Hi,

    he primary problem persists: No button hover WITH diagonal section border / No diagonal section border WITHOUT background overlay.

    Where can we see that issue? Can you give us a screenshot? Please use imgur or dropbox.
    For additional inquiries, please open a new thread.

    Best regards,
    Ismael

    in reply to: Extra page elements on bbPress forums page #1032407

    Hi,

    Looks like the large blank space on top of the section has been removed. Are there any layout issues left?

    Best regards,
    Ismael

Viewing 30 posts - 24,721 through 24,750 (of 66,166 total)