acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Add Code to FooterOpen footer.php and try and add your codes after:
</div><!-- END .wrap -->Also, you might want to wait for JustWrite v2.0 to be available wp.org.
Forum: Themes and Templates
In reply to: [JustWrite] Add Code to FooterYour javascript code is outputing some errors. Try and disable W3 Total Cache and see if it works.
Forum: Themes and Templates
In reply to: [JustWrite] I can't see 3rd menu lvl. Safari.Thank you for pointing it out, I will take a look and patch it.
Forum: Themes and Templates
In reply to: [JustWrite] Add Code to FooterThe fixed bar doesn’t work and I am sure it’s not a theme problem. If it’s a plugin you should contact the developer, he might give you some pointers.
Second question: open
header.php, find:<li><a href="<?php if( $header_rss != '' ) { echo esc_url( $header_rss ); } else { bloginfo( 'rss2_url' ); } ?>" class="social-btn right rss"><?php ac_icon('rss'); ?></a></li>Add after it:
<li><a href="YOUR WEIBO URL" class="social-btn right flikr"><?php ac_icon('weibo'); ?></a></li>Problem is the icons pack doesn’t have a Quora icon… if you can find an replacement here https://fortawesome.github.io/Font-Awesome/icons/ I can tell you how to add it.
Forum: Themes and Templates
In reply to: [JustWrite] Grid style layout for post listsIn one week or two… That section displays featured posts or latest posts, the pro version can also display posts from a specific category.
I don’t think it’s what you are looking for 🙂 because it doesn’t work in category archives, only on the homepage.
Forum: Themes and Templates
In reply to: [JustWrite] Grid style layout for post listsIt will be available for free in the next update, thing is it only works on the homepage.
Forum: Themes and Templates
In reply to: [JustWrite] Grid style layout for post listsYou mean something like this: http://demo.acosmin.com/D_justwrite/masonry-1/ ?
Forum: Themes and Templates
In reply to: [JustWrite] WP 4.3, PHP7 compatibilityHi! These issues were already pointed out and as I said in the previous thread, the next update will fix them (with a lot of improvements: http://goo.gl/w76vqp).
Also, those types of errors appear only if you have debug mode enabled… you can check this thread out if you want a quick fix: https://wordpress.org/support/topic/notices-for-wp-43?replies=7
The reason for Static Page being disabled in the Customizer is that JustWrite has a magazine/blog style. I haven’t seen many magazines/blogs using a static page. If you really need that option you can find it in
WP Administration Panel > Settings > Reading > Front page displaysor by opening../acosmin/functions/functions-theme-customizer.phpand replacing:
$wp_customize->remove_section( 'static_front_page' );
with:
// $wp_customize->remove_section( 'static_front_page' );Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Juswrite – photo credit missing in thumbnailThe only way you can do that is by opening
../post-templates/content-single.php, find:the_post_thumbnail( 'ac-sidebar-featured' );replace it with:
the_post_thumbnail( 'ac-sidebar-featured' ); $attachment_id = get_post_thumbnail_id(); $tmb_meta = wp_prepare_attachment_for_js( $attachment_id ); echo $tmb_meta['caption'];This will work with the featured post thumbnail in single view, you only need to add a caption to that image.
Always remember to use a child theme.
Forum: Themes and Templates
In reply to: [JustWrite] Size of screenyou can try:
body { zoom: 80%; }but I don’t recommend it 🙂
EDIT: It doesn’t work in all browsers, so don’t use it.
There is no way to accomplish what you want without modifying the entire style.css file. Sorry!
Forum: Themes and Templates
In reply to: [JustWrite] Notices for WP 4.3🙂 I wrote above you should replace them with:
function __construct() {Forum: Themes and Templates
In reply to: [JustWrite] Notices for WP 4.3function AC_Featured_Posts_Widget() { function AC_Popular_Posts_Widget() { function AC_Recent_Posts_Widget() { function AC_Tabs_Widget() { function ac_social_buttons_widget() {in all those files
Forum: Themes and Templates
In reply to: [JustWrite] Notices for WP 4.3There is a big update coming soon: http://demo.acosmin.com/D_justwrite it will solve those issues.
If you are in a hurry you can open ../acosmin/widgets/
custom-featured-posts-widget.php
custom-popular-posts-widget.php
custom-recent-posts-widget.php
custom-tabs-widget.php
default-social-buttons-widget.phpand where it says at the beginning:
function AC_Featured_Posts_Widget() {
replace with:
function __construct() {Forum: Themes and Templates
In reply to: [JustWrite] Stop ignoring peoples support posts.^^ what Nortwoods said 😉
Forum: Themes and Templates
In reply to: [JustWrite] How to add left sidebar menuHi! It only shows up if your screen resolution is above 1600px width. Try the demo on another computer and you will see.