acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Screen shifting left in vertial orientaton in mobileIt works on my mobile phones.
Make a screenshot. Also what phone do you have, os version, screen resolution.
I am sorry, it’s not possible.
Forum: Themes and Templates
In reply to: [JustWrite] Site Is Down Many times in a dayHi! It’s not a theme issue. The theme passed all wp.org requirements and it follows the latest guidelines.
It might be a plugin. You can try another theme if the problem persists.
Forum: Themes and Templates
In reply to: [JustWrite] Twitter share button share only title.I don’t understand your original question.
If the script doesn’t work as you want I recommend you use JetPack or any other social sharing plugins.
More info on tweet buttons you can find here: https://dev.twitter.com/web/tweet-button
Forum: Themes and Templates
In reply to: [JustWrite] Tags,post and image Need HelpYou can add a background image by using the Customizer, “Header” section > “Header – Background Image”.
The code you changed doesn’t have anything to do with tags, you need to undo it.
You will need a child theme or a custom css plugin to change add some css lines.
To remove tags add this code:
.single-content .post-tags-wrap { display: none !important; }To hide author and date in single view:
.single-template-1 .details .detail.index-post-author, .single-template-1 .details .detail.index-post-date { display: none !important; }Forum: Themes and Templates
In reply to: [JustWrite] Will you add Souncloud in Social Buttons widget?I don’t know if it’s a priority, you can add it yourself by opening
../acosmin/widgets/default-social-buttons-widget.php. Find (you will find this line twice in the file, replace it both times):$social_names = array( 'Twitter', 'Facebook', 'Google Plus', 'RSS', 'YouTube', 'Instagram', 'FlickR', 'Tumblr', 'VK', 'Pinterest', 'LinkedIn', 'Dribbble', 'GitHub' );and replace with:
$social_names = array( 'Twitter', 'Facebook', 'Google Plus', 'RSS', 'YouTube', 'Instagram', 'FlickR', 'Tumblr', 'VK', 'Pinterest', 'LinkedIn', 'Dribbble', 'GitHub', 'Soundcloud' );I don’t know if it has the necessary background color, you can wait until next update and I will try and add it.
Forum: Themes and Templates
In reply to: [JustWrite] Twitter share button share only title.I think you have your answer above 🙂
Forum: Themes and Templates
In reply to: [JustWrite] How to display share buttons ?In header.php:
<?php if ( $header_tw != '' ) { ?><li><a href="https://twitter.com/<?php echo esc_html( $header_tw ); ?>" class="social-btn left twitter"><?php ac_icon('twitter'); ?></a></li><?php } ?> <?php if ( $header_fb != '' ) { ?><li><a href="<?php echo esc_url( $header_fb ); ?>" class="social-btn right facebook"><?php ac_icon('facebook'); ?></a></li><?php } ?> <?php if ( $header_gp != '' ) { ?><li><a href="<?php echo esc_url( $header_gp ); ?>" class="social-btn left google-plus"><?php ac_icon('google-plus'); ?></a></li><?php } ?> <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>Open
../acosmin/widgets/default-social-buttons-widget.php, find:echo '<li class="' . $social_align . '"><a href="'. esc_url( $instance[$social_id] ) .'" class="social-btn ' . $social_icon . '">' . esc_html( $instance[$social_title] ) . ac_icon( $social_icon, false ) . '</a></li>';replace with:
echo '<li class="' . $social_align . '"><a rel="nofollow" href="'. esc_url( $instance[$social_id] ) .'" class="social-btn ' . $social_icon . '">' . esc_html( $instance[$social_title] ) . ac_icon( $social_icon, false ) . '</a></li>';Forum: Themes and Templates
In reply to: [JustWrite] Slider not scrollingThere are some javascript errors on your page, maybe caused by a caching plugin. Disable the plugin and it might work.
Forum: Themes and Templates
In reply to: [JustWrite] error in menu mobile and commentsI found your website. Anyway, the sub-menus work on mobile. You need to click on the circle with an arrow in it.
The second issue I think you solved it. Am I right?
Forum: Themes and Templates
In reply to: [JustWrite] error in menu mobile and commentswebsite link?
In your child theme’s
style.cssyou can do something like this:/* Desktop */ .header-wrap { background-image:url("your image url with http://"); } /* Mobile */ @media screen and (max-width: 1140px) { .header-wrap { background-image:url("your image url with http://"); } }Where 1140px is your mobile screen resolution. You can tweak it to your liking.
The only downside is that you can’t use the option provided in the Customizer (regarding header background image). If you have an image set up, you need to remove it.
I think you can use Simple Custom CSS if you don’t have a child theme.
Forum: Themes and Templates
In reply to: [JustWrite] Too little in mobile devicesYou obviously made some changes to the theme and I am not responsible for any customization.
For some reason you managed to remove this line from header.php:
<meta name="viewport" content="width=device-width, initial-scale=1" />