acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Header breaking in SafariI can’t really tell well the problem is. You have so many plugins activated, cached/minified code…
Forum: Themes and Templates
In reply to: [JustWrite] How to Fix Header MenuI don’t understand your question. Please elaborate…
Forum: Themes and Templates
In reply to: [JustWrite] Header breaking in Safaridon’t minify the javascript files and you’ll be fine.
Forum: Themes and Templates
In reply to: [JustWrite] View Attachment page gives 404 errorAnything related to downloads isn’t handled by the theme. In your case it might have something to do with htaccess, setting the wrong chmod in a ftp client, or any security plugin that was set up incorrectly.
Please try contacting your web hosting provider, they can provide more info on this issue.
Forum: Themes and Templates
In reply to: [JustWrite] View Attachment page gives 404 errorThe theme was not designed with a attachment file, it’s not required by wp.org.
If you want want just copy/paste single.php in the same folder and rename it to attachment.php
@the Barefoot Bookworm I don’t think .doc is a file you can view via attachment. You should use a download manager.
There is no security featured built into the theme. “view image” & “save image” can’t be disabled by the theme, it’s all on your end…
Forum: Themes and Templates
In reply to: [JustWrite] Thumbnail Icons and LogoForum: Themes and Templates
In reply to: [JustWrite] Different Category Colors HomepageThe way the category is displayed at the moment makes it a little hard to change colors. But even so, it would imply adding some meta values to categories and that is “plugin territory” and can’t be included in themes.
Forum: Themes and Templates
In reply to: [JustWrite] full width post without any sidebarThe only way you can do that is by opening
../post-templates/content.phpand replacing:<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>with:
<a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>">Read More</a>Also open
style.cssfind these lines:.post-template-1 .details .post-small-button a { display: block; width: 48px; height: 100%; }replace with:
.post-template-1 .details .post-small-button a { display: block; height: 100%; }and:
.post-template-1 .details .post-small-button { width: 48px; text-align: center; border-width: 1px; border-style: solid; font-size: 11px; -webkit-box-shadow: 0 2px 0 rgba(225,225,225,0.5); -moz-box-shadow: 0 2px 0 rgba(225,225,225,0.5); box-shadow: 0 2px 0 rgba(225,225,225,0.5); }with:
.post-template-1 .details .post-small-button { text-align: center; padding: 0 20px; border-width: 1px; border-style: solid; font-size: 14px; -webkit-box-shadow: 0 2px 0 rgba(225,225,225,0.5); -moz-box-shadow: 0 2px 0 rgba(225,225,225,0.5); box-shadow: 0 2px 0 rgba(225,225,225,0.5); }Forum: Themes and Templates
In reply to: [JustWrite] full width post without any sidebarSorry, it’s not possible
Forum: Themes and Templates
In reply to: [JustWrite] Twitter "Share The Love" Button on Single PageIf the code from documentation is added you should go to WP Administration Panel > Appearace > Theme Options > Social Tab and add your Twiiter account.
Forum: Themes and Templates
In reply to: [JustWrite] Different Category Colors Homepage*Are you
Forum: Themes and Templates
In reply to: [JustWrite] Different Category Colors HomepageIf you are talking about the slider or simple posts?
Forum: Themes and Templates
In reply to: [JustWrite] Twitter "Share The Love" Button on Single PageCould you please post your website’s url.
Forum: Themes and Templates
In reply to: [JustWrite] Remove Social iconsAnswered here.
Forum: Themes and Templates
In reply to: [JustWrite] Fix Header.phpGo to this link, copy all the lines. Then open
header.php, delete its contentes and paste the copied lines.To remove social icons you need to delete these lines from
header.php:<ul class="header-social-icons clearfix"> <?php // Social variables - Options Panel $header_fb = of_get_option( 'ac_facebook_url' ); $header_tw = of_get_option( 'ac_twitter_username' ); $header_gp = of_get_option( 'ac_gplus_url' ); $header_rss = of_get_option( 'ac_custom_rss_url' ); ?> <?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> </ul><!-- END .header-social-icons -->