Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1433314

    Hi,
    i have installed a plugin from CasaSoft (Software for real estate). This WP Plugin reads by API the selected properties from the customer database.
    After Setup there are some settings to do also a bootstrap to choose for the property display template. You can choose bewtwee Bootstrap 2,3,4 but evertime i use one the detail page breaks and i get an error. There is also no option the redo this selection.
    Support says you have to bring bag the backup but i do not have one.

    Is there an Option to fix this? On the other way – without bootstrap – the responsivle view is gone.

    This is the page: https://fxfimmobilien.ch/marktplatz-plugin/
    Overview page works but not the detail page.

    I am a little lost now

    • This topic was modified 7 months ago by xeovision.
    #1433418

    Hey Sebastian,

    Thank you for the inquiry.

    We get an error when we try to open one of the listings — the layout looks broken. Please set your installation to debug mode so that we can check for errors. Please refer to the link below for more info about debugging.

    // https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
    // https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#example-wp-config-php-for-debugging

    Please make sure that WP_DEBUG_DISPLAY is set to true.

    Best regards,
    Ismael

    #1433426

    Hi .. debug is activ now

    #1433441

    Hi,

    Thank you for the update.

    The errors are indicating issues with files from the casawp-master plugin:

    
    Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /wp-content/plugins/casawp-master/modules/casawp/src/casawp/Service/Offer.php:
    
    plugins/casawp-master/vendor/zendframework/zend-view/src/Resolver/AggregateResolver.php
    

    To troubleshoot, you can temporarily disable the plugin by renaming the “casawp-master” folder located in “wp-content/plugins/” folder. For further assistance regarding these errors, please reach out to the developers of the plugin.

    Best regards,
    Ismael

    #1434246

    Hey Sebastian,

    Thank you for the inquiry.

    For some reason, we can’t reply to your latest inquiry, so we replied here.

    This is about: https://kriesi.at/support/topic/blog-add-header-transparent-to-archive-page/

    We adjusted the hook in the functions.php file and created a small script ( https://pastebin.com/L11xieeS )

     

    Best regards,
    Ismael

    #1434258

    Hi Ismael.. thanks … but this Does not work. The image isnt on to below the menu and transparent.
    The archive page and news detail page should have same header like the blog page ..

    #1434363

    Hi,

    Thank you for the additional info.

    If you need the header to be transparent on archive and single post pages, please include this code in the functions.php file.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header)
    {
        if ( is_archive() || is_singular('post') ) {
            $header['header_transparency'] = 'header_transparency';
        }
        return $header;
    }
    

    Best regards,
    Ismael

    #1434367

    hi .. öhm not att all… now, i do net get a broken header but the header isnt transparent .. can you check it directly in the backend?
    Especially in the archive page and detail post

    #1434406

    Hi,

    We have edited the avf_header_setting_filter filter in the functions.php file and made some adjustments to the custom script. The header is now transparent, with the slider displaying below it.

    
    function av_custom_inline_script_slider_banner()
    {
        wp_add_inline_script(
            'jquery',
            "(function($) {
                $(document).ready(function() {
                    $('#av-main-slider-banner').appendTo('.av-slider-banner-container');
                    $('#header').addClass('av_header_transparency');
                });
            })(jQuery);"
        );
    }
    add_action('wp_enqueue_scripts', 'av_custom_inline_script_slider_banner');
    
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header)
    {
        if ( is_archive() || is_singular('post') ) {
            $header['header_transparency'] = 'header_transparency';
            $header['header_title_bar'] = 'hidden_title_bar';
        }
        return $header;
    }
    
    
    #av-main-slider-banner { display: none !important; opacity: 0; }
    .av-slider-banner-container #av-main-slider-banner { display: block !important; opacity: 1; }
    

    We also added this css code to keep the slider from displaying when it’s not yet appended to the av-main-slider-banner container.

    Thank you for your patience.

    Best regards,
    Ismael

    #1434409

    Cool.. mega … thank you

    #1434432

    we can close here

    #1434460

    Hi,

    No problem! Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Bootstrap from Plugin kills sub page’ is closed to new replies.