acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Too little in mobile devicesAlso browser, os, zoom level, if any…
Forum: Themes and Templates
In reply to: [JustWrite] Too little in mobile devicesHi! Is there anyway you can post your mobile phone’s name and maybe a screenshot… I don’t have much to go on right now 🙂
Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Move Logo in centerIt’s not possible, sorry.
Forum: Themes and Templates
In reply to: [JustWrite] Slider not workingNo problem. Don’t forget to delete the temporary account.
Forum: Themes and Templates
In reply to: [JustWrite] Slider not workingDid you try and change “Front Page display” in Settings > Reading, or in Customizer. Anyway, it needs “Your latest posts” selected. This is the first time I’ve seen this issue.
Maybe a plugin changed the settings.
It works now, you can enable Wowslider again.
Forum: Themes and Templates
In reply to: [JustWrite] Slider not workingFirst of all it’s not my fault.
There is no javascript errors on your page.
If you look in your page’s source you’ll see there is no slider activated. Just search for this id “main-slider”, it doesn’t exist.
The only way I see we can resolve this if you give me a temporary username and password to your WP administration panel.
Forum: Themes and Templates
In reply to: [JustWrite] Slider not workingThen you are doing something wrong. Did you select the posts you want as featured?
Forum: Themes and Templates
In reply to: [JustWrite] Slider not workingWell, the slider isn’t displaying so I can’t notice if it’s a problem with a js script or you didn’t enable it.
In the WP administration panel go to Appearance > Theme Options > Slider and make sure “Check this box if you would like to display it.” is checked.
Forum: Themes and Templates
In reply to: [JustWrite] Slider not workingYour website’s url is?
Forum: Themes and Templates
In reply to: [JustWrite] clickable thumbnails in post previewOpen
../post-templates/content.phpfind:if ( has_post_thumbnail() ) : the_post_thumbnail( 'ac-post-thumbnail' );replace with:
if ( has_post_thumbnail() ) : echo '<a href="' . esc_url( get_permalink() ) . '">'; the_post_thumbnail( 'ac-post-thumbnail' ); echo '</a>';Forum: Themes and Templates
In reply to: [JustWrite] The title is twiceThere is no issue, you can remove the lines.
Forum: Themes and Templates
In reply to: [JustWrite] The title is twiceThe update should be up in a few hours. There is no need to remove those lines. I’m marking this topic as resolved.
Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] The title is twiceI did a little digging and it’s my fault. I forgot to remove some lines from
functions.php. You can open that file and remove the following:/* Title formatting /* ------------------------------------ */ if ( ! function_exists( 'ac_wp_title' ) ) { function ac_wp_title( $title, $sep ) { global $paged, $page; if ( is_feed() ) { return $title; } // Add the site name. $title .= get_bloginfo( 'name' ); // Add the site description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) { $title = "$title $sep $site_description"; } // Add a page number if necessary. if ( $paged >= 2 || $page >= 2 ) { $title = "$title $sep " . sprintf( __( 'Page %s', 'acosmin' ), max( $paged, $page ) ); } return $title; } } add_filter( 'wp_title', 'ac_wp_title', 10, 2 );Sorry for any problems caused! I will push an update as soon as possible.
Also, thank you for pointing out the issue!
Forum: Themes and Templates
In reply to: [JustWrite] The title is twiceTry removing this from
functions.php:/* Title - Backwards compatibility /* ------------------------------------ */ if ( ! function_exists( '_wp_render_title_tag' ) ) { function ac_render_title() { ?> <title><?php wp_title( '|', true, 'right' ); ?></title> <?php } add_action( 'wp_head', 'ac_render_title' ); }even though I don’t think it will help.
Forum: Themes and Templates
In reply to: [JustWrite] The title is twiceThen don’t disable WordPress SEO… The theme doesn’t do anything to the title, it uses the default WP title tag. Try and see if it does the same with other themes, like twentyfifteen.