acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Mini-Sidebar for Home Page OnlyTry opening
functions.php, find these lines:if ( $is_enabled ) { $class = ' mini-disabled'; }Change to:
if ( $is_enabled || is_single() || is_page() ) { $class = ' mini-disabled'; }Forum: Themes and Templates
In reply to: [JustWrite] Mini-Sidebar for Home Page OnlyActually change it to:
<?php if ( !is_single() ) { // Disable or Enable Mini-Sidebar ?>Forum: Themes and Templates
In reply to: [JustWrite] Mini-Sidebar for Home Page OnlyBeyond what I said above also do this, open
sidebar-browse.phpand find:<?php if ( !get_theme_mod( 'ac_disable_minisidebar' ) ) { // Disable or Enable Mini-Sidebar ?>Change it to:
<?php if ( !get_theme_mod( 'ac_disable_minisidebar' ) || !is_single() ) { // Disable or Enable Mini-Sidebar ?>Forum: Themes and Templates
In reply to: [JustWrite] Translate "main menu" into FrenchOpen
sidebar-browse.php, find this line:wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-first', 'items_wrap' => '<ul class="normal-list"><li class="'. $page_state .'"><a href="'. esc_url( home_url() ) .'" title="'. __('Go Home', 'acosmin') .'">'. __('Main Page', 'acosmin') .'</a></li>%3$s</ul>' ) );Change:
__('Main Page', 'acosmin')with__('Your French Word', 'acosmin')Or you can translate the entire theme by using the .po files located in
../languages/folder:
http://codex.wordpress.org/Translating_WordPressForum: Themes and Templates
In reply to: [JustWrite] Mini-Sidebar for Home Page OnlyYou can try this, open
sidebar-browse.php, find:<?php if ( !get_theme_mod( 'ac_disable_minisidebar' ) ) { // Disable or Enable Mini-Sidebar ?>Change it with:
<?php if ( !get_theme_mod( 'ac_disable_minisidebar' ) || !is_single() ) { // Disable or Enable Mini-Sidebar ?>Also open
single.php, find:<section class="container<?php ac_mini_disabled() ?> clearfix">Change it with:
<section class="container mini-disabled clearfix">I haven’t tried it, so I don’t know if it really works.
Forum: Themes and Templates
In reply to: [JustWrite] Turn off mobile siteYou can open
style.css, find this line:@media screen and (max-width: 1140px) {and delete everything bellow it, including that line.
Forum: Reviews
In reply to: [JustWrite] menu difficultyPlease read the documentation, Menus section.
To remove the browse more button open
header.phpand delete the following lines:<?php if ( !get_theme_mod( 'ac_disable_minisidebar' ) ) { ?> <a href="#" class="browse-more" id="browse-more"><?php echo ac_icon('caret-down', false) . __( 'Browse', 'acosmin' ) ?></a> <?php } ?>Forum: Themes and Templates
In reply to: [JustWrite] "Share this on" button below postPlease read the documentation, Tips/Hacks section
Forum: Themes and Templates
In reply to: [JustWrite] Ads not showingCan you post some links to your websites?
The Ad code should be something like:
<a href="link"><img src="img link" /></a>Forum: Themes and Templates
In reply to: [JustWrite] Mini-Sidebar disappeardedIt appears to be ok. It depends on your screen resolution (it show only above 1600px, if not a “browse more” link will appear in your menu).
Forum: Themes and Templates
In reply to: [JustWrite] Logo/Tagline Issues!Make the logo smaller…
And serach for
.logo-imageand removemax-width: 180px;Forum: Themes and Templates
In reply to: [JustWrite] Show posts from a specific categoryIf you are not using the recent posts widget open
..acosmin/widgets/custom-recent-posts-widget.phpand bellow
'posts_per_page' => $recent_posts_number,
add this line:'cat' => 4,where 4 represent your category id.
After that eneble the recent posts widget
Forum: Themes and Templates
In reply to: [JustWrite] sidebar under sliderI am sorry but it’s not possible.
Both your requirements are big customization work. I can only help you with support for bugs and questions regarding theme options.
Forum: Themes and Templates
In reply to: [JustWrite] sidebar under sliderIt might be possible but I am not available for custom work.
If you need help you can use http://jobs.wordpress.net/
Forum: Themes and Templates
In reply to: [JustWrite] Featured Image ProblemsYou can open functions.php and find these lines:
set_post_thumbnail_size( 600, 400, true ); add_image_size( 'ac-post-thumbnail', 600, 400, true );Change with:
set_post_thumbnail_size( 600, 400 ); add_image_size( 'ac-post-thumbnail', 600 );After that you might want to use this plugin Regenerate Thumbnails.