Forum Replies Created
-
AuthorPosts
-
Serenity
MemberBrad, It is in my Localhost.
Thanks for your reply; If it is any easier I can use one of my domains and upload everything and give you the user name and password to take a look
Appreciate it,Regards
“ First, solve the problem. Then, write the code. ”
Serenity
MemberI tried to add my code to some of my hooks using simple hooks plugins by genesis. I added it to genesis_before_content_sidebar_wrap and perhaps all the hooks in there to see where it displays but I get nothing or it display in odd and weird spots. I only want it on the blog page full width as in my deisgn. Also, it keeps pushing the content area but not the side bar.
Thanks Brad for all your help;
“ First, solve the problem. Then, write the code. ”
Serenity
MemberI also tried this with no luck: http://sridharkatakam.com/move-post-title-post-info-entry-header-entry-content-genesis/
“ First, solve the problem. Then, write the code. ”
Serenity
MemberIt is not working for some reasons.
“ First, solve the problem. Then, write the code. ”
Serenity
MemberI see that you have posted this today on your site: http://wpsites.net/web-design/move-entry-title-after-post-info-on-archive-page/
I am going to try it now 🙂
“ First, solve the problem. Then, write the code. ”
Serenity
MemberBrad that's exactly it. I am using Agent Press 2.0. Any ideas how to reposition the title? Thank you so much!!!!!
“ First, solve the problem. Then, write the code. ”
November 12, 2013 at 7:20 pm in reply to: Eliminate the Page Name on Landing Page – AgentPress 2.0 Theme #72601Serenity
Member<?php
//* Do NOT include the opening php tag//* ALL EXAMPLES ON THIS PAGE USE THE NEW HTML5 METHOD
//* Remove page titles site wide (posts & pages) (requires HTML5 theme support)
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );//* Remove page title for a specific page (requires HTML5 theme support)
//* Change '28' to your page id
add_action( 'get_header', 'child_remove_page_titles' );
function child_remove_page_titles() {
if ( is_page( 28 ) ) {
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
}//* Remove page title for multiple pages (requires HTML5 theme support)
//* Change '3645' and '4953' to match your needs
add_action( 'get_header', 'child_remove_page_titles' );
function child_remove_page_titles() {
$pages = array( 3645,4953 );
if ( is_page( $pages ) ) {
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
}//* Remove page titles from all single posts & pages (requires HTML5 theme support)
add_action( 'get_header', 'child_remove_titles' );
function child_remove_titles() {
if ( is_singular() ){
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
}//* Remove page titles from specific posts (requires HTML5 theme support)
add_action( 'get_header', 'child_remove_post_titles' );
function child_remove_post_titles() {
$pages = array( 4953,4648 );
if ( is_single( $pages ) ) {
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
}
“ First, solve the problem. Then, write the code. ”
August 24, 2013 at 7:54 pm in reply to: AgentPress: How to add HTML to AgentPress 2.0's Primary Navigation menu #58653Serenity
MemberYou have to custom code. Not a big deal...
“ First, solve the problem. Then, write the code. ”
Serenity
MemberJake,
I am very familiar with Agent Press 2.0. Please reach out and let me know the issues and I will be more than happy to help you out. From first glimpse I can see that everything is not organized as it suppose to be. Not a big deal.
John
“ First, solve the problem. Then, write the code. ”
Serenity
MemberMy website is on local host Sorry!
“ First, solve the problem. Then, write the code. ”
Serenity
MemberBTW, Should I start a new topic If I have a different question? I don't mind paying a fee if you could help me figure out a different issue/problem I'm having with genesis.
Let me know,
John
“ First, solve the problem. Then, write the code. ”
Serenity
MemberThank you David, You guys are awesome! To Plugins we go....
John
“ First, solve the problem. Then, write the code. ”
Serenity
MemberThank you David. You are so kind to answer my complicated question. I have thought about plugins but I'm trying to avoid them as much as I could. Too many plugins are just going to slow down my website. The reason I like some of App theme functions is the way it is displayed for clients to register.
Thanks a lot again David.
John
“ First, solve the problem. Then, write the code. ”
Serenity
MemberCorrect!
“ First, solve the problem. Then, write the code. ”
Serenity
MemberChris,
Thanks for your reply, althoug this Studio Press community is very slow in responding, it is crucial to get the right answers from the people who design the themes. Anyways, here is the screen shot: http://oi45.tinypic.com/2s1uf0w.jpg I don't know why you were not able to see it.
Please let me know,
John
“ First, solve the problem. Then, write the code. ”
Serenity
MemberSoZo,
Can I display excerpt on other pages or posts just like the way they are displayed on agent press 2 home page default theme and how? Thank you so much.
John
“ First, solve the problem. Then, write the code. ”
Serenity
MemberTry Agent Press 2.0 it is AWESOME! Also, let me know if you need help setting it up. Regards,
John
“ First, solve the problem. Then, write the code. ”
Serenity
MemberDoes anyone know how to display like home page horizontal posts within a page or a post. Here the posts I'm talking about and any help would be much appreciated. Thanks
Image: http://oi49.tinypic.com/znoeio.jpg
“ First, solve the problem. Then, write the code. ”
-
AuthorPosts