ironman5151
Forum Replies Created
-
Cancel request – I GOT IT WORKING~!~!~! there were additional fields not needed in the code. THANK YOU MUCH!!!
@neilmurray – you are awesome. The form is sending without an error, but I am not getting a message saying it was sent. After hitting “send”, the form just goes blank. Thanks for putting up with beginners like myself.
Here is code I have now:
<div class="row"> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12"><div class="form-group">[text* your-name class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent placeholder "Your Name"]</div></div> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 form-group">[email* your-email class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent placeholder "Your Email"]</div> </div> <div class="row d-none"> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 form-group">[text service-you-need class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent placeholder "Service you need"]</div> </div> </div> <div class="row"> <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 form-group">[textarea your-message class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent rows:5 placeholder "Your Message"]</div> </div> [submit class:btn class:btn-primary class:btnskyblue class:rounded-0 "Submit"]
Forum: Fixing WordPress
In reply to: Image in header and footer blurrybump -sorry to flood the forums but desperate for help. Nothing I have tried is working. Any input greatly appreciated.
@neilmurray – thank you for very much for the coaching.
Here is the code:
<div class="row"> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12"><div class="form-group">[text* your-name class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent placeholder "Your Name"]</div></div> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 form-group">[email* your-email class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent placeholder "Your Email"]</div> </div> <div class="row d-none"> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 form-group">[text service-you-need class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent placeholder "Service you need"]</div> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 form-group">[date* date-205 class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent date-format:mm/dd/yy first-day:1 change-month change-year placeholder "Date"] </div> </div> <div class="row"> <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 form-group">[textarea your-message class:form-control class:rounded-0 class:p-0 class:pb-3 class:text-white class:border-top-0 class:border-left-0 class:border-right-0 class:border-bottom class:border-light class:bg-transparent rows:5 placeholder "Your Message"]</div> </div> [submit class:btn class:btn-primary class:btnskyblue class:rounded-0 "Submit"]
Here is a screen shot of form: https://www.integritypoolsolutions.com/wp-content/uploads/2019/01/Untitled.png
thanks again!
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?I cannot think you enough for your time. I think the suggested changes are now over my layman head.
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?ohhhh man. lol the mountain keeps getting bigger. I was attempting to do this myself, but I may need to reach out to my web design then. This looks over my head.
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?That’s what I was trying but still too low:
https://www.dustinmaherg.com/2016/01/what-i-learned-from-a-multi-millionaire/
I am thinking these must be another php file now that needs it
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?getting close. got it inside the box now, lol. This is like gambling
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?here is contet-post.php
<?php /** * @package GetNoticed * @since GetNoticed 1.0 */ global $getnoticedMeta; if ( ! is_array($getnoticedMeta) ) $getnoticedMeta = getnoticed_theme_meta( get_the_ID(), get_post_type() ); if ( !isset($postclass) ) $postclass = ''; if ( !empty($getnoticedMeta['posttitle']) ) $postclass .= ' posttitle-' . $getnoticedMeta['posttitle']; if ( $getnoticedMeta['introfeature'] ) { $postclass .= ' introfeature'; if ( $getnoticedMeta['dropcaps'] ) add_filter( 'the_content', 'getnoticed_dropcap', 90 ); else add_filter( 'the_content', 'getnoticed_introfeature', 90 ); } else { if ( $getnoticedMeta['dropcaps'] ) add_filter( 'the_content', 'getnoticed_dropcap', 90 ); } #!! I think we should redo this. if ( $getnoticedMeta['featuredimages'] == 'before' ) add_filter( 'the_content', 'getnoticed_featuredimage_before', 85 ); if ( $getnoticedMeta['featuredimages'] == 'after' ) add_filter( 'the_content', 'getnoticed_featuredimage_after', 85 ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class($postclass); ?>> <header class="entry-header"> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php get_template_part( 'content-post-header' ); ?> </div><!-- .entry-meta --> <?php endif; ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php do_action( 'getnoticed_subtitle' ); ?> <?php do_action( 'getnoticed_byline' ); ?> </header><!-- .entry-header --> <?php do_action( 'getnoticed_sharebar', 'top' ); do_action( 'getnoticed_authorbox', 'top', $getnoticedMeta ); do_action( 'getnoticed_post_ads', 'top' ); ?> <div class="entry-content"> <?php the_content(''); ?> </div> <?php do_action( 'getnoticed_authorbox', 'bottom', $getnoticedMeta ); do_action( 'getnoticed_sharebar', 'bottom' ); do_action( 'getnoticed_post_ads', 'bottom' ); do_action( 'getnoticed_nrelate' ); ?> <div class="entry-footer"> <div class="entry-date-wrap"> <?php getnoticed_posted_on(); ?> <?php edit_post_link( __( '<em>edit</em>', 'getnoticed' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?> </div> <?php /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( __( ', ', 'getnoticed' ) ); if ( $categories_list && getnoticed_categorized_blog() ) : $categories_label = ( strpos( $categories_list, ', ' ) === false ) ? __( 'Category', 'getnoticed' ) : __( 'Categories', 'getnoticed' ); ?> <span class="cat-links"> <?php printf( __( $categories_label . ': %1$s', 'getnoticed' ), $categories_list ); ?> </span> <?php endif; // End if categories ?> <?php edit_post_link( __( '<em>[edit post]</em>', 'getnoticed' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?> <?php do_action( 'getnoticed_ftcdisclosure' ); ?> </div> </article> <?php remove_filter( 'the_content', 'getnoticed_featuredimage_before', 85 ); remove_filter( 'the_content', 'getnoticed_featuredimage_after', 85 ); if ( $getnoticedMeta['dropcaps'] ) remove_filter('the_content', 'getnoticed_dropcap', 90); if ( $getnoticedMeta['introfeature'] ) remove_filter('the_content', 'getnoticed_introfeature', 90); ?>
Thanks for not giving up on me
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?uhhhhhhh lol let me see if can figure it out. I had no idea where to look so your direction is a start.
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?above* the bar
?? thank you for trying. Any other ideas? I went digging in other templates but could not figure it out.
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?I actually tried that when I was waiting for you and did not work.
This is what it’s doing:
https://www.dustinmaherg.com/2016/01/what-i-learned-from-a-multi-millionaire/
Placing it under the white post box besides about the bar.
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?I am assuming to edit single.php ? If so, here is the code:
<?php /** * The Template for displaying all single posts. * * @package GetNoticed * @since GetNoticed 1.0 */ # Add the audio player for the audio post type if ( 'audio' == get_post_type() ) { if ( function_exists('getnoticed_audioplayer_header') ) add_action( 'wp_head', 'getnoticed_audioplayer_header' ); } # Disable filters if ( 'post' == get_post_type() ) { if ( in_category('podcast') && function_exists('speakpipe_footer') ) add_action( 'wp_footer', 'speakpipe_footer' ); } elseif ( 'page' == get_post_type() ) { # Load custom meta data remove_action( 'the_content', 'add_post_footer', 0 ); remove_filter( 'the_content', 'nrelate_related_inject', 10 ); remove_filter( 'the_content', 'smartads_insert', 9 ); } else { # Disable potential plugins we don't want remove_action( 'the_content', 'add_post_footer', 0 ); remove_filter( 'the_content', 'nrelate_related_inject', 10 ); remove_filter( 'the_content', 'smartads_insert', 9 ); } add_action('wp_head', 'getnoticed_opengraph_meta'); get_header(); ?> <div id="primary" class="site-content"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php getnoticed_content_nav( 'nav-above' ); ?> <?php get_template_part( 'content', get_post_type() ); ?> <?php getnoticed_content_nav( 'nav-below' ); ?> <?php if ( ! getnoticed_option('nuke-comments') ) { // If comments are open or we have at least one comment, load up the comment template if ( comments_open() || '0' != get_comments_number() ) { get_template_part( 'comments-pre' ); comments_template( '', true ); } } ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary .site-content --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?Sorry for delay – I went to lunch. I could not find a “post.php”. Here are my options:
https://www.dustinmaherg.com/2016/01/templates/
Thank you so much for the rapid comments. I am excited to get this fixed.
Forum: Themes and Templates
In reply to: How do I insert an image above my bottom share bar on all post?I am thinking once you teach me where to insert code for the image above share bar, I can paste the php code for the related post below the share bar fixing two problems at once :).