stellamaris5
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] AnalyticsI’ve got the Google Analytics Dashboard for WP plugin installed, works good.
Obvsly you need to create a google analytics account and then connect it. But you can install the plugin first and then go through the tutorial and other tips in the plugin on how to connect it.
Forum: Themes and Templates
In reply to: [Customizr] Add “MENU” text to 3-bar Menu button does not workand make sure that If you are using a server cache or cache plugin, please clear your cache content and browser history.
Forum: Themes and Templates
In reply to: [Customizr] Add “MENU” text to 3-bar Menu button does not workTry replacing my CSS code with your original one that @salsaturation fixed for you
Forum: Themes and Templates
In reply to: [Customizr] Add “MENU” text to 3-bar Menu button does not workIt only appears on mobile and the normal menu on desktop. I can see on mobile it’s there on your site but no text ‘Menu’
Forum: Themes and Templates
In reply to: [Customizr] Add “MENU” text to 3-bar Menu button does not workMIght need adjusting but I don’t know exactly what , I got the help for this ages ago here on this forum as well.
Forum: Themes and Templates
In reply to: [Customizr] Add “MENU” text to 3-bar Menu button does not workThis is my CSS code:
/* START OF Add "MENU" text to 3-BAR Menu button (Needs additional php code in Child Theme functions.php) */ .btn-toggle-nav.btn-primary { padding-left:0; } .navbar .btn-toggle-nav .menu-btn { height: 22px; width: 45px; position: relative; z-index: 2; } .btn-toggle-nav.btn.btn-primary.pull-right { position: relative; } .btn-toggle-nav .menu-label { display: block; position: absolute; left: 8px; top: 1px; z-index: 1; } /* END OF Add "MENU" text to 3-BAR Menu button (Needs additional php code in Child Theme functions.php) */
Forum: Themes and Templates
In reply to: [Customizr] Add “MENU” text to 3-bar Menu button does not workyou need to also add stuff in the child theme function.php file
// START OF Add "MENU" text to 3-BAR Menu button (Needs additional CSS code in Child Theme style.css) // Remove 3-bars from menu button add_filter('tc_menu_display', 'rdc_menu_display'); function rdc_menu_display($output) { return preg_replace('|<span class="icon-bar"></span>|', null, $output); } add_filter('tc_regular_button_class', 'my_regular_menu_button_class'); function my_regular_menu_button_class( $classes){ return array_merge( $classes, array( 'btn', 'btn-primary') ); } // END OF Add "MENU" text to 3-BAR Menu button (Needs additional CSS code in Child Theme style.css)
Forum: Themes and Templates
In reply to: [Customizr] remove 3 bars and add ‘menu’Resolved.
Changed eveythign back to tc_
Forum: Themes and Templates
In reply to: [Customizr] Footer credit stopped working after 3.5.4resolved, change czr_fn_credits_display to tc_credits_display
Forum: Themes and Templates
In reply to: [Customizr] Fatal Errorsorted
Forum: Themes and Templates
In reply to: [Customizr] Fatal Errorwhat i dont understand is that I already have version 3.4.23 but these changes where done on version 3.4.21.
It is now working fine only when I update to 3.5.4 this happens, I am sure it is not a big problem but I dont even understand what this error means and which file to look for.
I will only update the site once I know that this wont happen before I update. I dont want to update then fix the error, because I cant even log in to wordpress admin after updateting
- This reply was modified 7 years, 9 months ago by stellamaris5.
Forum: Themes and Templates
In reply to: [Customizr] Fatal ErrorAnd which file do I need to look at? Is this in the child theme? or the main customizer theme?
Sorry about all this questions but i am not very good with programming.Forum: Themes and Templates
In reply to: [Customizr] Fatal ErrorOK, I’ve read the articles but I have no idea where to begin, do I have to follow exactly all the steps? Is my error exactly the same?
Forum: Themes and Templates
In reply to: [Customizr] Fatal ErrorShall I replace class TC_post_list with something else ? And how/where?
Forum: Themes and Templates
In reply to: [Customizr] 3.4.34.Interesting. I was updating every version of customizr and it never happened before.
I’m not very good at php so where would I look to eliminate this error?
Is it a plugin problem? Or something I added in the child theme function.php ?
Ps I use php7 and not customizr pro just the standard version- This reply was modified 8 years, 1 month ago by stellamaris5.
- This reply was modified 8 years, 1 month ago by stellamaris5.