Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
You can do something like this:
function graphene_filter_gettext( $translated, $original, $domain ) { if ( is_singular() ){ $moretext = get_post_meta( get_the_ID(), 'more text', true ); if ( $moretext ) { $strings = array( 'Read the rest of this entry ยป' => $moretext, ); } } if ( ! empty( $strings[$original] ) ) { $translations = &get_translations_for_domain( $domain ); $translated = $translations->translate( $strings[$original] ); } return $translated; } add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );Admin
Try deactivating the following plugins:
Columns
Responsive Column Widgets
SiteOrigin Widgets Bundle
TinyMCE Advanced
WP Edit
Admin
Quote:What I’m trying to achieve is a bottom bar similar to the one that you have on yours but I cannot figure out what or how to add stuff to the bottom bar. I tried adding a list to customizer/Franz Josef: General/Footer but every time I saved it the theme deleted it.What are the plugins that you have installed? Can you list them out here? Could be one of them is causing the issue. It sounds similar to the page builder behaviour that you’re seeing (widget content being deleted).
Quote:Finally the reason I had the empty widgets was because I wanted to spread out the three sections that show on the site. The left widget has a copyright title, the middle an image and the right a menu. For some reason if I don’t add in the empty widgets they all line up beside each other and not spread evenly across the screen.By default, the footer widget area has 4 columns, which is they’re not spread evenly across the width if you only have 3 widgets. You can change the widget area column number from Customizer > Franz Josef: General > Footer.
Admin
Try to restore the original theme’s footer file. If that fixes it then you can just re-do the footer customisation from there.
Admin
In reply to: breadcrumbs – gap between navbar and header on small devices (tablets)
March 7, 2017 at 2:22 pm #46534Hi Chris,
Try adding this code to the theme’s Custom CSS option (test it with and without top bar as well):
@media (min-width: 768px) and (max-width: 991px) {
body {
padding-top: 75px;
}
}Admin
Seems the link above goes to a splash page. Please provide the link to the site that’s using Franz Josef.
Admin
Add this code to the theme’s Custom CSS option:
.navbar {
min-height: 150px;
}Adjust the height as necessary.
Admin
Hi DezD,
Are you still having this issue with Stacks?
Admin
Glad it helped! Marking this thread as resolved then (you can do this as well).
Admin
You have the following code in your child theme’s
style.cssfile which is hiding the text:.copyright {
display: none;
}Just remove those lines and you should be good.
I also noticed that you have 3 empty text widgets in the footer widget area. Might want to check those?
