The Breis Agency
Forum Replies Created
-
Forum: Reviews
In reply to: [Appointment Scheduler] Waste of money and timeThis was a very helpful review – thank you! I almost… ALMOST … bought this plugin.
Ok thank you
Kharis that was a superb suggestion – EVERYTHING is working now! ?? Thank you SO MUCH!
alright will do and get back to you ??
Hello Kharis! I deactivated all plugins but that didnt work either ??
When I revert back to the parent theme, everything works fine (both on Desktop and Mobile). So I suspect the issue has to do with my Child Theme? Does that help you come up with possible solutions?
For reference, here is what I have in my child functions.php:
<?php
add_action( ‘wp_enqueue_scripts’, ‘child_enqueue_styles’,99);
function child_enqueue_styles() {
$parent_style = ‘parent-style’;
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’, array( $parent_style ) );
}
if ( get_stylesheet() !== get_template() ) {
add_filter( ‘pre_update_option_theme_mods_’ . get_stylesheet(), function ( $value, $old_value ) {
update_option( ‘theme_mods_’ . get_template(), $value );
return $old_value; // prevent update to child theme mods
}, 10, 2 );
add_filter( ‘pre_option_theme_mods_’ . get_stylesheet(), function ( $default ) {
return get_option( ‘theme_mods_’ . get_template(), $default );
} );
}- This reply was modified 7 years, 7 months ago by The Breis Agency. Reason: to add code from child functions.php
Sorry that didnt work and it broke the Desktop View also ??
Hello thanks for responding. I dont have any custom CSS code. I’ve also deactivated all non-essential plugins and the problem still persists. Finally, I applied your suggested code but the issue wasnt solved.
Here are my plugins:
Akismet Anti-Spam
Erident Custom Login and Dashboard (disabled)
Instagram Feed WD
Kadence Toolkit
Loginizer
Maintenance
My Calendar (disabled)
Page Builder by SiteOrigin (disabled)
Sydney Toolbox
UpdraftPlus – Backup/Restore
WP E-Signature
WP E-Signature Business add-onsForum: Themes and Templates
In reply to: [Llorix One Lite] Box Outline appears around button when clicked@poonam9 THANK YOU SO MUCH! That worked splendid! ?? I added the code you sent to my child theme’s style.css file (not the Additional CSS section). It worked like a dream – thanks a-plenty!!!
- This reply was modified 7 years, 7 months ago by The Breis Agency. Reason: include more info about how I applied the changes I made