Stephen Cui
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Voyage] Voyage and Jigoshopadd the following to the theme’s Custom CSS code.
.jigoshop #sidebar_one { float: right;}
.jigoshop div.clear {
clear: none;
}It is just a workaround for your current settings. Let me know if works.
Forum: Themes and Templates
In reply to: [Voyage] Voyage and JigoshopI know it does not work. Jigoshop called get_sidebar within its own function.
It is not possible to have the sidebar between two </div>. A good plugin should simply use the theme’s template file.
Forum: Themes and Templates
In reply to: [Voyage] Voyage and Jigoshopfirst action:
echo ‘<div class=”‘ . voyage_container_class() . ‘”><div id=”content” class=”‘ . voyage_grid_class() .'” role=”main”>’;
Forum: Themes and Templates
In reply to: [Voyage] Voyage and JigoshopNevermind. For second action: try
echo ‘</div>’ . get_sidebar() . ‘</div>’;
Forum: Themes and Templates
In reply to: [Voyage] Voyage and Jigoshoptry this
function mytheme_open_jigoshop_content_wrappers() { echo '<div class="' . voyage_container_class() . '"><div id="content" class="' . voyage_grid_full() .'" role="main">'; }second function two close div only
echo ‘</div></div>’;
Forum: Themes and Templates
In reply to: [Voyage] Voyage and Jigoshopfunction mytheme_open_jigoshop_content_wrappers() { echo '<div class="' . voyage_container_class() . '"><div id="content" class="' . voyage_grid_class() .'" role="main">'; }I am not sure about the second action as I do not know jigshop. The article in their website tried to avoid get_sidebar(). You have to try yourself.
Forum: Themes and Templates
In reply to: [Voyage] Voyage and JigoshopYou can properly do the same thing as suggested by Jigoshop.
This is is open action
<div class=”<?php echo voyage_container_class(); ?>”>
<div id=”content” class=”<?php echo voyage_grid_class(); ?>” role=”main”>for close action:
</div><?php get_sidebar(); ?></div>
Let me know if this help. It do require some programming knowledge.
Forum: Themes and Templates
In reply to: [Voyage] make links blacka {color: #000; } in Custom CSS
Forum: Themes and Templates
In reply to: [Voyage] remove date from postsIt is bad practice to modify template file directly. It is best to use Child Theme. On my website, I have an article on child theme for Voyage. I even provided a sample Child Theme template for you to modify. For example, you can remove the credit link (and add your own link) in footer.php. In this way, you can update the parent theme (Voyage) without losing your changes.
Andrew: Thank you for your contribution also.
Forum: Themes and Templates
In reply to: [Voyage] remove date from postsI do not see the code on ur site’s style.css. I guess you did it wrong.
Forum: Themes and Templates
In reply to: [Voyage] align home menu to the right of pagewhich css file? Use the Custom CSS in the theme option.
It is bad practice to modify template file directly.
Forum: Themes and Templates
In reply to: [Voyage] remove date from posts.entry-date {display: none; } in Custom CSS.
Please try not to modify template files.
I saw many logos on ur site. I was wondering if u r designer.
Forum: Themes and Templates
In reply to: [Voyage] align home menu to the right of pagethere is Custom CSS in my theme option.
Forum: Themes and Templates
In reply to: [Voyage] remove date from postsCustom CSS in theme options. BTW – are you graphic designer?
Forum: Themes and Templates
In reply to: [Voyage] align home menu to the right of pageYou are using subsection menu
.subsection-menu {float: right; }