Forum Replies Created
-
AuthorPosts
-
wbxpressMember
@ braddalton: Did you get my mail?
wbxpressMemberI should create a logo for my site. I am trying it in GIMP.
Thanks for your feedback.wbxpressMemberI read your post once again. I am sorry, I still could not follow your guidance.
I have tried modifying filter name with 'wp_nav_menu_primary_items'. But no luck.
What else does eleven40-pro use to denote primary menu? i guess it is, 'wp_nav_menu_primary_items'. but it is not working with my site. May be, customization of eleven40-pro's stylesheet resulted such problem for me.
P.S. I have not tested the code in a fresh eleven40-pro theme.
wbxpressMemberI have two menus named "header" and "social" which are primary and secondary menu respectively. So, do I need to replace
wp_nav_menu_primary_items
with
header
in the code you provided.
wbxpressMember@braddalton: Thanks for your link. It is working for "wp_nav_menu_items" in my case (using eleven40-pro). But, it is not working in other two cases viz. "wp_nav_menu_primary_items" and "wp_nav_menu_secondary_items".
wbxpressMemberFinally, I got a perfect solution from the following link:-
wbxpressMemberWith the above tutorial the Login/Logout link appears in the menu BUT it is not showing in the same line. Is there any fix for this?
wbxpressMemberThis reply has been marked as private.wbxpressMemberThanks for your help.
It is solved through this tutorial: http://wpsites.net/web-design/3rd-parameter-action-hooks/
wbxpressMemberI did a fresh install of eleven40-pro and it is now working.
wbxpressMemberThanks for the link above. The result for my site is self-explanatory. Please check it.
wbxpressMemberWOW! It is working perfect. Thanks for the code.
I also need to remove "Filed Under: Category" and "Tagged With: Tag" text below the Sticky post title only. Is it possible to remove only with the sticky posts title?
Those texts should be present in other posts as well.P.S. Sorry for a delayed reply.
wbxpressMember@ antiac: I just sent you the join.me meeting link.
wbxpressMemberDo you want to display other posts?
Yes.
Or only sticky posts and only the title of sticky posts?
Other post+Title of Sticky postAnother option is to add remove_actions in your home.php file
home.php is not in use.I understand that you are trying to help me. But, being a novice, I could not manage to use the solutions you provided above.
Can you please write a code which I shall put in functions.php of the child theme and it will work?
wbxpressMemberAdmin>Settings>General: WBXPress
SEO settings-> Home page settings->Homepage Document Title: West Bengal Government PublicationsBut, Google Search Engine shows it as: wbXpress
wbxpressMemberI want to display title of Sticky Posts at first. Then comes the latest post with excerpts.
I am not using home.php because it can not display handcrafted excerpts in my home page. All posts of my blog do have a handcrafted excerpts.
wbxpressMemberwbxpressMemberHi chillybin, i have found almost a similar way to achieve this. I just inserted the below code in simple hooks plugin at the genesis-entry-header:-
<?php if ( is_singular() ) { ?> <div class="content-box"> <?php the_excerpt(); ?> </div> <?php } ?>
Thanks for your kind support. You are awesome.
wbxpressMemberHi,
I just changed the above to suite my needs and it worked perfect.
add_action('genesis_entry_header','custom_excerpt', 11); function custom_excerpt() { if ( is_single() ) the_excerpt(); }
However, I am struggling to find a way to display the excerpt in a content box. I have working content-box class but could not find the way to implement it.
-
AuthorPosts