clneon 0 Report post Posted October 19, 2011 Hello, I'm working with Platform Pro Developer (so I can replace the leaf logo and links easily) but I would like replace where the footer logo and link back to the homepage of the site in the footer with some "html" a that has javascript and links that describe the Authorized.Net verification seal for the site. How could I best achieve this? I can paste the html code into the content of any page and it works correctly, but I can't seem to create a hook that replaces the in the footer with the . This site is mainly an ecommerce site so I would like to have a verified seal at the bottom in the footer. Any help would be appreciated. Share this post Link to post Share on other sites
kastelic 6 Report post Posted October 19, 2011 Assuming you have platformbase activated place this in platformbase/functions.php: [code] add_action('wp_footer','footer-stuff'); function footer-stuff(){ ?> hi world Share this post Link to post Share on other sites clneon 0 Report post Posted October 19, 2011 Hello, I installed the code but had to change footer-stuff to footer_stuff because I was getting a parsing error on loading. Once I made the change the linked logo show up below the the footer, it doesn't replace the footer logo as I would like. Also it is positioned at the left and doesn't float with the rest of the footer. I could do what is happening now and have it float by adding a full width sidebar to the footer template and paste the code in it. Share this post Link to post Share on other sites kastelic 6 Report post Posted October 19, 2011 You need to use CSS to position it. For example, give it a width and give it [code]margin:0 auto[/code] to center it on the page. If you want to hide the footer logo find its class or id using Firebug or Google Chrome, and use [code]display:none[/code] Share this post Link to post Share on other sites kastelic 6 Report post Posted October 19, 2011 btw here's a list i made of the hooks available in Platform Pro (if you don't want to use wp_footer): [code] HEADER pagelines_before_html pagelines_head pagelines_before_site pagelines_before_page before_header pagelines_before_main BRANDING pagelines_before_branding pagelines_inside_top_branding pagelines_inside_bottom_branding pagelines_after_branding pagelines_before_branding_icons pagelines_branding_icons_start pagelines_branding_icons_end pagelines_after_branding_wrap NAVIGATION pagelines_before_primary-nav pagelines_inside_top_primary-nav pagelines_inside_bottom_primary-nav pagelines_after_primary-nav SECONDARY NAV pagelines_before_secondnav pagelines_inside_top_secondnav pagelines_inside_bottom_secondnav pagelines_after_secondnav CONTENT pagelines_before_maincontent pagelines_inside_top_maincontent pagelines_inside_bottom_maincontent pagelines_after_maincontent pagelines_before_columns pagelines_before_maincolumn pagelines_before_sidebar1 pagelines_after_sidebar1 MAIN CONTENT pagelines_before_theloop pagelines_inside_top_theloop pagelines_inside_bottom_theloop pagelines_after_theloop POSTLOOP pagelines_loop_post_start pagelines_loop_page_title_after pagelines_loop_post_header_start pagelines_before_excerpt // 1.5.1 pagelines_after_excerpt pagelines_loop_before_post_content pagelines_loop_after_post_content pagelines_loop_post_end pagelines_loop_clipbox_start pagelines_loop_clip_start pagelines_loop_clip_excerpt_end pagelines_loop_clip_end pagelines_loop_clipbox_end COMMENT FORM pagelines_before_pl_comments pagelines_inside_top_pl_comments pagelines_inside_bottom_pl_comments pagelines_after_pl_comments POST NAVIGATION pagelines_before_postnav pagelines_inside_top_postnav pagelines_inside_bottom_postnav pagelines_after_postnav POST AUTHOR INFORMATION pagelines_before_postauthor pagelines_inside_top_postauthor pagelines_inside_bottom_postauthor pagelines_after_postauthor POSTS INFO pagelines_before_postsinfo pagelines__inside_top_postsinfo pagelines_inside_bottom_postsinfo pagelines_after_postsinfo PAGINATION pagelines_before_pagination pagelines_inside_top_pagination inside_bottom_pagination pagelines_after_pagination CONTENT SHARING TOOL pagelines_before_sharebar pagelines_inside_top_sharebar pagelines_inside_bottom_sharebar pagelines_after_sharebar NOPOSTS pagelines_before_noposts pagelines_inside_top_noposts pagelines_inside_bottom_noposts pagelines_after_noposts SIDEBAR pagelines_before_sidebar_wrap pagelines_after_sidebar_wrap PRIMARY SIDEBAR pagelines_before_sidebar_primary pagelines_inside_top_sidebar_primary pagelines_inside_bottom_sidebar_primary pagelines_after_sidebar_primary SECONDARY SIDEBAR pagelines_before_sidebar_secondary pagelines_inside_top_sidebar_secondary pagelines_inside_bottom_sidebar_secondary pagelines_after_sidebar_secondary TERTIARY SIDEBAR pagelines_before_sidebar_tertiary pagelines_inside_top_sidebar_tertiary pagelines_inside_bottom_sidebar_tertiary pagelines_after_sidebar_tertiary TWITTERBAR pagelines_before_twitterbar pagelines_inside_top_twitterbar pagelines_inside_bottom_twitterbar pagelines_after_twitterbar UNIVERSAL SIDEBAR pagelines_before_sidebar_universal pagelines_inside_top_sidebar_universal pagelines_inside_bottom_sidebar_universal FULLWIDTH SIDEBAR pagelines_before_fullwidth_sidebar pagelines_inside_top_fullwidth_sidebar pagelines_inside_bottom_fullwidth_sidebar pagelines_after_fullwidth_sidebar CONTENT SIDEBAR pagelines_before_content_sidebar pagelines_inside_top_content_sidebar pagelines_inside_bottom_content_sidebar pagelines_after_content_sidebar FOOTER pagelines_after_footer BOXES pagelines_before_boxes pagelines_inside_top_boxes pagelines_inside_bottom_boxes pagelines_after_boxes pagelines_box_inside_bottom SOAPBOX pagelines_before_soapbox pagelines_inside_top_soapbox pagelines_inside_bottom_soapbox pagelines_after_soapbox pagelines_soapbox_links pagelines_soapbox_inside_bottom HIGHLIGHT pagelines_before_highlight pagelines_inside_top_hightlight pagelines_inside_bottom_hightlight pagelines_after_highlight CALLOUT pagelines_before_callout pagelines_inside_top_callout pagelines_inside_bottom_callout pagelines_after_callout BRANDNAV pagelines_before_brandnav pagelines_inside_top_brandnav pagelines_inside_bottom_brandnav pagelines_after_brandnav brandnav_after_brand brandnav_after_nav BREADCRUMB pagelines_before_breadcrumb pagelines_inside_top_breadcrumb pagelines_inside_bottom_breadcrumb pagelines_after_breadcrumb FEATURES pagelines_before_feature pagelines_inside_top_feature pagelines_inside_bottom_feautre pagelines_after_feature pagelines_feature_before pagelines_fcontent_before pagelines_feature_text_top pagelines_feature_text_bottom pagelines_fcontent_after pagelines_feature_media_top pagelines_feature_after pagelines_feature_nav_before CAROUSEL pagelines_before_carousel pagelines_inside_top_carousel pagelines_inside_bottom_carousel pagelines_after_carousel pagelines_carousel_list BANNERS pagelines_before_banners pagelines_inside_top_banners pagelines_inside_bottom_banners pagelines_after_banners PULL QUOTE SECTION pagelines_before_pullquote pagelines_inside_top_pullquote pagelines_inside_bottom_pullquote pagelines_after_pullquote BASE SIDEBAR pagelines_before_sidebar_base pagelines_inside_top_sidebar_base pagelines_inside_bottom_sidebar_base pagelines_after_sidebar_base MOREFOOT SIDEBARS pagelines_before_morefoot pagelines_inside_top_morefoot pagelines_inside_bottom_morefoot pagelines_after_morefoot FOOTER SIDEBARS pagelines_before_footcols pagelines_inside_top_footcols pagelines_inside_bottom_footcols pagelines_after_footcols SIMPLE FOOTER NAVIGATION pagelines_before_simple_footer_nav pagelines_inside_top_simple_footer_nav pagelines_inside_bottom_simple_footer_nav pagelines_after_simple_footer_nav SHAREBAR pagelines_before_sharebar pagelinse_after_sharebar TWITTERBAR pagelines_before_twitterbar_text OPTIONS pagelines_before_optionUI DOCUMENT pagelines_code_before_head [/code] Share this post Link to post Share on other sites clneon 0 Report post Posted October 20, 2011 Hello, I decided to use the full width sidebar in the footer template so I could turn on and off which pages showed the seal. Adjusting the css on the sidebar was easier than trying to place the hook in the main footer content. Share this post Link to post Share on other sites Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Login via PageLines Signup To PageLines Sign in to follow this Followers 0
clneon 0 Report post Posted October 19, 2011 Hello, I installed the code but had to change footer-stuff to footer_stuff because I was getting a parsing error on loading. Once I made the change the linked logo show up below the the footer, it doesn't replace the footer logo as I would like. Also it is positioned at the left and doesn't float with the rest of the footer. I could do what is happening now and have it float by adding a full width sidebar to the footer template and paste the code in it. Share this post Link to post Share on other sites
kastelic 6 Report post Posted October 19, 2011 You need to use CSS to position it. For example, give it a width and give it [code]margin:0 auto[/code] to center it on the page. If you want to hide the footer logo find its class or id using Firebug or Google Chrome, and use [code]display:none[/code] Share this post Link to post Share on other sites
kastelic 6 Report post Posted October 19, 2011 btw here's a list i made of the hooks available in Platform Pro (if you don't want to use wp_footer): [code] HEADER pagelines_before_html pagelines_head pagelines_before_site pagelines_before_page before_header pagelines_before_main BRANDING pagelines_before_branding pagelines_inside_top_branding pagelines_inside_bottom_branding pagelines_after_branding pagelines_before_branding_icons pagelines_branding_icons_start pagelines_branding_icons_end pagelines_after_branding_wrap NAVIGATION pagelines_before_primary-nav pagelines_inside_top_primary-nav pagelines_inside_bottom_primary-nav pagelines_after_primary-nav SECONDARY NAV pagelines_before_secondnav pagelines_inside_top_secondnav pagelines_inside_bottom_secondnav pagelines_after_secondnav CONTENT pagelines_before_maincontent pagelines_inside_top_maincontent pagelines_inside_bottom_maincontent pagelines_after_maincontent pagelines_before_columns pagelines_before_maincolumn pagelines_before_sidebar1 pagelines_after_sidebar1 MAIN CONTENT pagelines_before_theloop pagelines_inside_top_theloop pagelines_inside_bottom_theloop pagelines_after_theloop POSTLOOP pagelines_loop_post_start pagelines_loop_page_title_after pagelines_loop_post_header_start pagelines_before_excerpt // 1.5.1 pagelines_after_excerpt pagelines_loop_before_post_content pagelines_loop_after_post_content pagelines_loop_post_end pagelines_loop_clipbox_start pagelines_loop_clip_start pagelines_loop_clip_excerpt_end pagelines_loop_clip_end pagelines_loop_clipbox_end COMMENT FORM pagelines_before_pl_comments pagelines_inside_top_pl_comments pagelines_inside_bottom_pl_comments pagelines_after_pl_comments POST NAVIGATION pagelines_before_postnav pagelines_inside_top_postnav pagelines_inside_bottom_postnav pagelines_after_postnav POST AUTHOR INFORMATION pagelines_before_postauthor pagelines_inside_top_postauthor pagelines_inside_bottom_postauthor pagelines_after_postauthor POSTS INFO pagelines_before_postsinfo pagelines__inside_top_postsinfo pagelines_inside_bottom_postsinfo pagelines_after_postsinfo PAGINATION pagelines_before_pagination pagelines_inside_top_pagination inside_bottom_pagination pagelines_after_pagination CONTENT SHARING TOOL pagelines_before_sharebar pagelines_inside_top_sharebar pagelines_inside_bottom_sharebar pagelines_after_sharebar NOPOSTS pagelines_before_noposts pagelines_inside_top_noposts pagelines_inside_bottom_noposts pagelines_after_noposts SIDEBAR pagelines_before_sidebar_wrap pagelines_after_sidebar_wrap PRIMARY SIDEBAR pagelines_before_sidebar_primary pagelines_inside_top_sidebar_primary pagelines_inside_bottom_sidebar_primary pagelines_after_sidebar_primary SECONDARY SIDEBAR pagelines_before_sidebar_secondary pagelines_inside_top_sidebar_secondary pagelines_inside_bottom_sidebar_secondary pagelines_after_sidebar_secondary TERTIARY SIDEBAR pagelines_before_sidebar_tertiary pagelines_inside_top_sidebar_tertiary pagelines_inside_bottom_sidebar_tertiary pagelines_after_sidebar_tertiary TWITTERBAR pagelines_before_twitterbar pagelines_inside_top_twitterbar pagelines_inside_bottom_twitterbar pagelines_after_twitterbar UNIVERSAL SIDEBAR pagelines_before_sidebar_universal pagelines_inside_top_sidebar_universal pagelines_inside_bottom_sidebar_universal FULLWIDTH SIDEBAR pagelines_before_fullwidth_sidebar pagelines_inside_top_fullwidth_sidebar pagelines_inside_bottom_fullwidth_sidebar pagelines_after_fullwidth_sidebar CONTENT SIDEBAR pagelines_before_content_sidebar pagelines_inside_top_content_sidebar pagelines_inside_bottom_content_sidebar pagelines_after_content_sidebar FOOTER pagelines_after_footer BOXES pagelines_before_boxes pagelines_inside_top_boxes pagelines_inside_bottom_boxes pagelines_after_boxes pagelines_box_inside_bottom SOAPBOX pagelines_before_soapbox pagelines_inside_top_soapbox pagelines_inside_bottom_soapbox pagelines_after_soapbox pagelines_soapbox_links pagelines_soapbox_inside_bottom HIGHLIGHT pagelines_before_highlight pagelines_inside_top_hightlight pagelines_inside_bottom_hightlight pagelines_after_highlight CALLOUT pagelines_before_callout pagelines_inside_top_callout pagelines_inside_bottom_callout pagelines_after_callout BRANDNAV pagelines_before_brandnav pagelines_inside_top_brandnav pagelines_inside_bottom_brandnav pagelines_after_brandnav brandnav_after_brand brandnav_after_nav BREADCRUMB pagelines_before_breadcrumb pagelines_inside_top_breadcrumb pagelines_inside_bottom_breadcrumb pagelines_after_breadcrumb FEATURES pagelines_before_feature pagelines_inside_top_feature pagelines_inside_bottom_feautre pagelines_after_feature pagelines_feature_before pagelines_fcontent_before pagelines_feature_text_top pagelines_feature_text_bottom pagelines_fcontent_after pagelines_feature_media_top pagelines_feature_after pagelines_feature_nav_before CAROUSEL pagelines_before_carousel pagelines_inside_top_carousel pagelines_inside_bottom_carousel pagelines_after_carousel pagelines_carousel_list BANNERS pagelines_before_banners pagelines_inside_top_banners pagelines_inside_bottom_banners pagelines_after_banners PULL QUOTE SECTION pagelines_before_pullquote pagelines_inside_top_pullquote pagelines_inside_bottom_pullquote pagelines_after_pullquote BASE SIDEBAR pagelines_before_sidebar_base pagelines_inside_top_sidebar_base pagelines_inside_bottom_sidebar_base pagelines_after_sidebar_base MOREFOOT SIDEBARS pagelines_before_morefoot pagelines_inside_top_morefoot pagelines_inside_bottom_morefoot pagelines_after_morefoot FOOTER SIDEBARS pagelines_before_footcols pagelines_inside_top_footcols pagelines_inside_bottom_footcols pagelines_after_footcols SIMPLE FOOTER NAVIGATION pagelines_before_simple_footer_nav pagelines_inside_top_simple_footer_nav pagelines_inside_bottom_simple_footer_nav pagelines_after_simple_footer_nav SHAREBAR pagelines_before_sharebar pagelinse_after_sharebar TWITTERBAR pagelines_before_twitterbar_text OPTIONS pagelines_before_optionUI DOCUMENT pagelines_code_before_head [/code] Share this post Link to post Share on other sites
clneon 0 Report post Posted October 20, 2011 Hello, I decided to use the full width sidebar in the footer template so I could turn on and off which pages showed the seal. Adjusting the css on the sidebar was easier than trying to place the hook in the main footer content. Share this post Link to post Share on other sites