Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Use WP Custom Fields to change Read More button text?

    #46550

    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

    In reply to: Bottom Bar

    #46480

    Try deactivating the following plugins:

    Columns

    Responsive Column Widgets

    SiteOrigin Widgets Bundle

    TinyMCE Advanced

    WP Edit

    Admin

    In reply to: Bottom Bar

    #46478
    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

    In reply to: sidebar widget missing

    #46580

    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

    Hi 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

    In reply to: Adjusting images to slider, changing posts height

    #46544

    Seems the link above goes to a splash page. Please provide the link to the site that’s using Franz Josef.

    Admin

    In reply to: Navbar height

    #46528

    Add this code to the theme’s Custom CSS option:

    .navbar {
    min-height: 150px;
    }

    Adjust the height as necessary.

    Admin

    In reply to: Two column, 1 with with Google map

    #46531

    Hi DezD,

    Are you still having this issue with Stacks?

    Admin

    In reply to: Video will not play

    #46573

    Glad it helped! Marking this thread as resolved then (you can do this as well).

    Admin

    In reply to: Bottom Bar

    #46476

    You have the following code in your child theme’s style.css file 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?

Viewing 10 posts - 851 through 860 (of 6,030 total)