martisim
Forum Replies Created
-
Forum: Reviews
In reply to: [CE WP-Menu per Page] Been looking for this for a whileI looked into register_nav_menus and finally got it working, thanks very much, you have saved my project! ??
Martisim
Forum: Reviews
In reply to: [CE WP-Menu per Page] No documentationAuthor did reply to another post about the plugin, still cant get it to work though, will keep trying though
Forum: Plugins
In reply to: [CE WP-Menu per Page] Menu the same on each pageHi thanks for your reply
Sorry I’m struggling to understand exactly what you mean, is there any documentation for this plugin? all i could find was too vague and didn’t explain anything.
Martisim
Forum: Reviews
In reply to: [CE WP-Menu per Page] CE WP-Menu per PageHi Julie
Thanks for replying
I have set up a new page and selected the menu i want from the list, but how do you control where abouts it appears on the template? There must be a short code that calls the function? Currently i select a menu from the list on an existing page and it doesn’t appear in the front end. Any ideas?
Again thanks very much for helping
Martisim
Forum: Fixing WordPress
In reply to: Custom menu on each pageThe menus would have to be created via the menu section in wordpress.
I would like the user to be able to create a menu and then when they create a page I would like there to be a drop down where they can select a menu to appear.
Thanks for your reply
Martisim
Forum: Reviews
In reply to: [CE WP-Menu per Page] CE WP-Menu per PageHi RWD
Please can you help me get this set up? its not showing the menu on each page, am I supposed to include a shortcode into the template?
Any advice would be greatly appreciated
Thanks
Martisim
Forum: Plugins
In reply to: [CE WP-Menu per Page] Menu the same on each pageJust realized the developers doesn’t speak english and probably wont be replying to my post…
Forum: Reviews
In reply to: [CE WP-Menu per Page] Been looking for this for a whileHi generalmacbeth
How did you get this to work?
When i drag the widget into the sidebar it makes you select the menu there and then, but then when i try to configure which menu appears on each page it doesn’t work. It just shows the same menu configured in the sidebar on the widgets section.
Please help!!!
Thanks in advance ??
nevermind i figured it out, just in case you wanted to reference them individually, reference them by the “for” attribute in the label. so…
label[for="cntctfrm_contact_message"] { "styles go here" }
the code above does the message box, to find out the other labels look at the source code
Regards
martisim
I’m trying to figure out how to style each label individually, does anyone know if this is possible?
Forum: Plugins
In reply to: pagenavi not working, page 1 of 0 displayedsorry thats the code (above), didnt know about using paste bin lol
Forum: Plugins
In reply to: pagenavi not working, page 1 of 0 displayed<?php $firstClass ='topPost'; ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="otherPostInner<?php echo $firstClass;?>"> <?php $firstClass =""; ?> <?php if( get_the_post_thumbnail($post->ID) ) { ?><div class="postThumb"><?php the_post_thumbnail();?></div><?php } ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2><h4>Published: <?php the_date('l, F j, Y');?></h4> <?php the_excerpt(); ?></div><div class="clearer"></div> <?php endwhile; else: endif; ?> <?php query_posts('category_name='.get_the_title().'&post_status=publish,future');?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <p><?php the_excerpt(); ?></p> <?php endwhile; else: endif; ?>
Forum: Fixing WordPress
In reply to: how to wrap comments in quote marks?ive sorted the styles too thanks very much for your help guys ??
Forum: Fixing WordPress
In reply to: how to wrap comments in quote marks?cubecolour-
IT WORKED :D, is there anyway to style the quotes? thanks very much by the way!
Forum: Fixing WordPress
In reply to: how to wrap comments in quote marks?alchymyth-
its a custom theme that ive been developing, its based on the amber weinberg template hijinx, how ever its been updated since so its probally not the same https://www.amberweinberg.com/hijinks-a-wordpress-basic-framework/
unfortunatly im not aloud to post a link to the site but to out put the comments im using
<?php if ( have_comments() ) : ?> <h3 id="comments"><?php comments_number('No Comments', 'One Comment', '% Comments' );?></h3> <ol class="commentlist"> <?php wp_list_comments('avatar_size=60'); ?> </ol>
is there anything else that might help?
cubecolor- the comments are outputted using the p tag so would i use something like this?
.comment-content p:before {
content: open-quote;
}.comment-content p:after {
content: close-quote;
}cheers guys ??