-
AuthorPosts
-
February 6, 2024 at 6:31 pm #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 9 months, 2 weeks ago by xeovision.
February 7, 2024 at 8:03 am #1433418Hey 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-debuggingPlease make sure that WP_DEBUG_DISPLAY is set to true.
Best regards,
IsmaelFebruary 7, 2024 at 9:13 am #1433426Hi .. debug is activ now
February 7, 2024 at 10:36 am #1433441Hi,
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,
IsmaelFebruary 14, 2024 at 5:12 am #1434246Hey 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,
IsmaelFebruary 14, 2024 at 8:50 am #1434258Hi 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 ..February 15, 2024 at 4:48 am #1434363Hi,
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,
IsmaelFebruary 15, 2024 at 9:05 am #1434367hi .. ö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 postFebruary 15, 2024 at 1:35 pm #1434406Hi,
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,
IsmaelFebruary 15, 2024 at 1:43 pm #1434409Cool.. mega … thank you
February 15, 2024 at 5:14 pm #1434432we can close here
February 16, 2024 at 1:54 am #1434460 -
AuthorPosts
- The topic ‘Bootstrap from Plugin kills sub page’ is closed to new replies.