andreand
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Ho to change "Home" for its titleThanks a lot jtnh231!
What file are you asking me for?
header.php:
<div class="menu-header"> <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) );?>
It’s ok? Or are you asking for another file?
Thanks!!
Forum: Themes and Templates
In reply to: Ho to change "Home" for its titleSome help, please?
Thanks a lot!
Forum: Fixing WordPress
In reply to: Detecting galleryWho can help me, please? It’s just 2 or 3 php lines …
Thanks!!
Forum: Themes and Templates
In reply to: Ho to change "Home" for its titleOps! Thanks alchymythh!
Yes, navigation is on header.php:
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
I’m using a mix of themes, based on Twentyten.
Thanks a lot!
Forum: Themes and Templates
In reply to: Ho to change "Home" for its titleThanks alchymyth!
Following your instructions, I’ve just found on:
wp-includes/post-template.php// Show Home in the menu if ( ! empty($args['show_home']) ) { if ( true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'] ) $text = __('Home'); else $text = $args['show_home']; $class = ''; if ( is_front_page() && !is_paged() ) ...
Does it mean that I should change:
$text = __('Home');
for the parameter of the section title?
Forum: Themes and Templates
In reply to: Wpshower themesUm … I didn’t find any useful answer in their forum. So, it’s the reason why I’m asking here, at WP forums! ??
Thanks mates!
Forum: Fixing WordPress
In reply to: Installing in a subfolderHi stvwlf, thanks for your answer.
There’s nothing you need to change to have it work correctly.
I heard something about it, some time ago, but I don’t remember now that I need to do. I think it’s required to change something … but I don’t get remember what.
If you are installing in a subfolder because you have live files in the root folder
No, I don’t have any interesting file for this WP site.
If you can post a URL of a page that is not working correctly (images not loading)
One theme doesn’t show the images at home, but others yes. These themes that are showing the images, it seems that doesn’t work fine because the images aren’t showed as the theme should do. So, this is the reason why I think is something more general, not about theme …
Some help, please?
Forum: Themes and Templates
In reply to: Are themes not in the WordPress Theme Directory ok to use?Thanks a lot Chip Bennett for the “check plugin”!
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Catablog = a catalog of product?Thanks a lot, macguru2000!
I’ll test it!
Forum: Themes and Templates
In reply to: Catalog with subsectionsHi WP mates!
have you ever done a catalog with WP? What’s your opinion about?
How did you done?
Thanks a lot!
Forum: Themes and Templates
In reply to: Catalog with subsectionsThanks a lot degamer12!
I’ve just tested it, I mean, ecommerce plugins.
However, it isn’t the better solution, because the admin pannel shows the issues related with the shop. So, my client will see them! This is the reason why I think it’s not a solution.
Did someone create a catalog with WP?
I’d like to avoid learning a new cms. But, if WP doesn’t offer creating catalogs, then I’ll do.
Forum: Fixing WordPress
In reply to: Catalog without prices: WP or Prestashop?Let me add some more words:
If you think WP is the best, do you know themes to create catalogs with subsections?
Thanks a lot!
Forum: Themes and Templates
In reply to: Container's Homepage transparentSolved! I modified the index.php:
<?php get_header(); ?> <?php if ( is_home() ) { // This is a homepage } else { // This is not a homepage ?> <div id="container"> <div id="content" role="main"> <?php get_template_part( 'loop', 'index' ); ?> </div><!-- #content --> </div><!-- #container --> <?php } ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Container's Homepage transparentAnother way to solve the same question:
how can I make a customized homepage?
Forum: Themes and Templates
In reply to: Container's Homepage transparentThanks alchymyth, but my concern is about detection …
What I’d like to know is how can I detect that is the homepage.
There isn’t a page called homepage.php …
So?
Does somebody know how to solve this?
Thanks a lot!