acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] SSL / HTTPS Mixed content and customizer issueHi! This is the first time I’ve heard about this issue. I don’t own a SSL certificate and I don’t have a way to test it for now.
https://wp-themes.com/justwrite/ has SSL an I see it works just fine…
It might also be a problem with the wp plugin. Did you contact the author?
Anyway, thank you for the fix! I will try and see where the issue is and update the theme.
Forum: Themes and Templates
In reply to: [JustWrite] 160x600px AdOpen
sidebar-browse.phpand replace:<?php $ad160_show = of_get_option( 'ac_ad160_show' ); $ad160_code = of_get_option( 'ac_ad160_code' ); $ad160_title = of_get_option( 'ac_ad160_title' ); $ad160_url = of_get_option( 'ac_ad160_url' ); if ( $ad160_show && $ad160_code != '' ) : ?> <div class="banner-160-wrap"> <div class="ad160"> <?php if ( $ad160_title != '' ) { echo '<h5 class="banner-small-title"><a href="' . esc_url( $ad160_url ) . '">' . esc_html( $ad160_title ) . '</a></h5>'; } if ( $ad160_code != '' ) { echo $ad160_code; } ?> </div> </div> <?php endif; ?>with:
<div class="banner-160-wrap"> <div class="ad160"> YOUR AD CODE GOES HERE </div> </div>I hope I don’t have to tell you that you need to use a child theme.
Forum: Themes and Templates
In reply to: [JustWrite] AdvertisingOpen
header.phpand change this:<?php if ( $ad728_show && $ad728_code != '' ) : ?> <div class="advertising728"> <?php if ( $ad728_code != '' ) { echo $ad728_code; } ?> </div><!-- END .advertising728 --> <?php endif; ?>to:
<div class="advertising728"> YOUR ADD CODE GOES HERE </div><!-- END .advertising728 -->Forum: Themes and Templates
In reply to: [JustWrite] justwrite social icon in sidebarYou need to add the “ACOSMIN: Social Buttons” widget in Main Sidebar or Posts Sidebar.
Forum: Reviews
In reply to: [JustWrite] Very much clean and exactly what I want.Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Post to full width and website is in tablet mode.Font used: Questrial
The “Browse” menu appears only if you don’t disable the left sidebar (mini-sidebar).
I don’t know what plugins you have activated. I think you should disable WP Super Cache.
Forum: Themes and Templates
In reply to: [JustWrite] Post to full width and website is in tablet mode.Hi! Your website is not in tablet mode. I checked it in multiple browsers and screen resolutions and it looks as it should.
There isn’t a plugin to make posts full width, the theme doesn’t have this option. You can only have full width pages.
Also you should disable all the file minification and WP Super Cache (if your website doesn’t have heavy traffic > 1000 unique visitors/day, you don’t need it).
You have a lot of plugins activated and I can’t really tell were your problems start.
For the menu you should read this http://codex.wordpress.org/WordPress_Menu_User_Guide
Forum: Themes and Templates
In reply to: [JustWrite] shortcodes don't workHi! The theme doesn’t come with any shortcodes built-in.
It supports the default shortcodes that WordPress has. You can read more about them here and here you can find documentation for the video tag.
Also check out the Embeds section.
You can’t, you need to make some major modifications to do that.
Try jobs.wordpress.net but I don’t recommend you make this change.
Forum: Themes and Templates
In reply to: [JustWrite] Problems with dropdown menu and Popular Posts" tab.Something is adding
overflow: hiddento your menus, a plugin or something. You can disable all the plugins and see if it works.@popular posts problem, make sure the widget doesn’t have 0 set as number of posts.
Forum: Themes and Templates
In reply to: [JustWrite] share buttonYes, change that.
Forum: Themes and Templates
In reply to: [JustWrite] share buttonChange this:
<span class="post-small-button left p-read-more" id="share-<?php the_ID(); ?>-rm"> <a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>"><i class="fa fa-ellipsis-h fa-lg"></i></a> </span> <div class="post-small-button left p-share" id="share-<?php the_ID(); ?>-wrap"> <a href="#" class="post-share-temp1" id="share-<?php the_ID(); ?>"><i class="fa fa-share"></i></a> <span class="contents clearfix">to:
<span class="post-small-button left p-read-more" id="share-<?php the_ID(); ?>-rm" style="margin-right: 48px;"> <a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>"><i class="fa fa-ellipsis-h fa-lg"></i></a> </span> <div class="post-small-button left p-share" id="share-<?php the_ID(); ?>-wrap" style="height: 50px; width: 92%;"> <a href="#" class="post-share-temp1" id="share-<?php the_ID(); ?>" style="display: none;"><i class="fa fa-share"></i></a> <span class="contents clearfix" style="display: block; opacity: 1;">in the original code.
Forum: Themes and Templates
In reply to: [JustWrite] share buttonYou can’t, sorry!
Forum: Themes and Templates
In reply to: [JustWrite] Header breaking in SafariTry this – in
style.cssfind:.logo { display: inline-block !important; position: absolute; font-size: 36px; letter-spacing: 10px; font-weight: normal; text-transform: uppercase; text-align: left; top: 50%; left: 35px; transform: translateY(-50%); }and add before
transform: translateY(-50%);:-ms-transform: translateY(-50%); -webkit-transform: translateY(-50%);Forum: Themes and Templates
In reply to: [JustWrite] How to Fix Header MenuYou have an option in the Customizer. Go to “Top Menu” and click on “Disable Fixed Style”