Tagged: x
-
AuthorPosts
-
August 17, 2016 at 1:44 am #1134782
Brad MParticipantHey guys,
I’m trying to edit the top bar on this site.
http://www.businessworks.com.au/Can’t find anything in the Widgets or menus. I want to change the actual text, not the appearance/css.
Any help would be greatly appreciated.
Thanks.
August 17, 2016 at 2:51 am #1134840
RupokMemberHi there,
Thanks for writing in! If you are referring Topbar widget area – http://prntscr.com/c6qx7i then you can change them from Appearance > Widgets and changing the widgets from Header 1/ Header 2 / Header 3/ Header 4.
For Topbar content, you can change from Customize > Header > Topbar Content.
Hope this helps.
August 17, 2016 at 6:43 pm #1135912
Brad MParticipantThanks for such a quick response.
You are in the right area, however if you view the website, the ‘Topbar content’ refers to the content that is expanded when you hit the expand button on the top right hand corner. None of those locations you pointed me to have any way of changing the text on the top bar itself, not the content inside of it.
There’s some other menu that will allow me to change that text.
August 18, 2016 at 12:59 am #1136325
RupokMemberHi there,
As mentioned above it should be within Appearance > Widgets. If you still can’t figure it out, provide your login credentials in a private reply.
Thanks!
August 18, 2016 at 1:52 am #1136371
Brad MParticipantThis reply has been marked as private.August 18, 2016 at 4:05 am #1136480
Rue NelModeratorHello There,
Are your referring to this section, http://prntscr.com/c77o64? Please edit it in the customizer, Appearance > Customize > Header > Miscellaneous and find the Topbar Content. Please see this screenshot: http://prntscr.com/c77p1p
And if you want to edit the header widgets section, please go to Appearance > Widgets and find the header 1 and header 2. Look at this screenshot: http://prntscr.com/c77pix
Hope this helps.
August 18, 2016 at 6:48 pm #1137615
Brad MParticipantHey,
Like I mentioned in my previous comment, that area you have just pointed me to edits the content INSIDE the top bar when you expand it (click the plus sign). You’re right in your first screenshot, I want to edit exactly what you indicated, but I’m unable to do so in the path that you just directed me to. By all accounts I should be able to edit the top bar in the area you pointed me to but it seems like the person who initially made this website did something strange to change that.
Thanks.
August 18, 2016 at 11:19 pm #1137919
RupokMemberHi there,
Thanks for writing back. So did you figure it out and was able to edit this? All of the replies indicating the same thing so there should not be any confusion. Not sure what you are referring by “it seems like the person who initially made this website did something strange to change that.” since it’s already on the right place and I can’t see anything wrong. Topbar content located within Customize > Header > Topbar Content and widgets are under Appearance > Widgets > Header 1 and Header 2. I have checked that and it’ fine.
Let us know if you still need any help.
Cheers!
August 19, 2016 at 12:32 am #1137958
Brad MParticipantThanks again for your response.
I’m not sure if I’ve been clear, I want to change the ‘[email protected]’ as seen in this screen shot. http://puu.sh/qGxXo/fdb7347366.jpg
When i go to Customise > Header > Topbar content i get this:
http://puu.sh/qGy2o/f7d963ffbc.pngNone of the information in there relates to what I want to change, in fact when I *DISABLE* the top bar, it still remains in the site and doesn’t remove it, so it think it’s NOT the top bar that we’re looking at but something else. Nothing in Appearance > Widgets appears to relate to this either.
If you know how to change it and you have checked it, it would be greatly appreciated if you could change [email protected] to [email protected]. That’s all I want to change. I’ve been looking in the areas you’ve been directing me to and none of them seem to allow me to change that content.
Sorry if I’m being difficult or hard to understand, I appreciate your time and help but it just seems like we’re not on the same page and the areas you’re directing me to don’t allow me to change the content how I want it to.
Thanks.
August 19, 2016 at 1:46 am #1138008
FriechModeratorHi There,
Thanks for the clarification, yup that is strange. Either your changes in Customizer does not save. Or your topbar content is hardcoded on a template file.
Please provide us FTP credentials so we can take a closer look.
August 19, 2016 at 1:58 am #1138015
Brad MParticipantThis reply has been marked as private.August 19, 2016 at 2:15 am #1138022
RupokMemberHi there,
Thanks for clarifying. I guess the templates was edited and that might be hard-coded. I am getting connection timeout for your FTP so can’t check. You can try activating X instead of the Child Theme. If you see you are seeing your changes, then you will know the issue is related to your Child Theme and that part is hard-coded. Then you can check the directory /framework/views/global/_topbar.php on your Child Theme.
It should be like :
<?php // ============================================================================= // VIEWS/GLOBAL/_TOPBAR.PHP // ----------------------------------------------------------------------------- // Includes topbar output. // ============================================================================= ?> <?php if ( x_get_option( 'x_topbar_display' ) == '1' ) : ?> <div class="x-topbar"> <div class="x-topbar-inner x-container max width"> <?php if ( x_get_option( 'x_topbar_content' ) != '' ) : ?> <p class="p-info"><?php echo x_get_option( 'x_topbar_content' ); ?></p> <?php endif; ?> <?php x_social_global(); ?> </div> </div> <?php endif; ?>If you see it’s hard-coded with content then remove that and replace with this to get default content.
Hope this helps.
August 21, 2016 at 6:12 pm #1140675
Brad MParticipantThanks again for your reply,
You’re spot on: I’ve set the theme to X and the text now appears as I want it, however the rest of the website is not as it’s supposed to be so I’d rather find the area that’s hard coded.
I’ve checked that php file and it is exactly as you showed me, I also checked the same file under ‘x’ and it was exactly the same. It must be hard-coded somewhere else..
Thanks.
August 21, 2016 at 9:02 pm #1140868
LelyModeratorHello Brad,
To check where is this coming from, please remove all files from your child theme’s folder. Save a backup. Then add each file again one by one. Check after adding each file and see which file cause this issue.
Hope this helps.
August 22, 2016 at 12:01 am #1140990
Brad MParticipantHi again,
It’s definitely this file:
x-child-integrity-light/framework/views/global/_topbar.php<?php // ============================================================================= // VIEWS/GLOBAL/_TOPBAR.PHP // ----------------------------------------------------------------------------- // Includes topbar output. // ============================================================================= ?> <?php if ( get_theme_mod( 'x_topbar_display' ) == 1 ) : ?> <div class="x-topbar"> <div class="x-topbar-inner x-container-fluid max width"> <?php if ( get_theme_mod( 'x_topbar_content' ) != '' ) : ?> <p class="p-info"><?php echo get_theme_mod( 'x_topbar_content' ); ?></p> <?php endif; ?> <?php x_social_global( 'topbar' ); ?> </div> <!-- end .x-topbar-inner --> </div> <!-- end .x-topbar --> <?php endif; ?> -
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1134782 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
