lukeratto
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to hide title underline ?possible it’s not border? but link text-decoration: underline; ?
.page-header {
text-decoration: none;
}?
Forum: Themes and Templates
In reply to: [Serene] Custom Front Pagewhen I added a child function file like so
<?php
function my_theme_enqueue_styles() {$parent_style = ‘parent-style’; // This is ‘serene-style’ for the Serene theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style ),
wp_get_theme()->get(‘Version’)
);
}
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
?>anything I try to save results in a blank page
Forum: Themes and Templates
In reply to: [Serene] Custom Front PageDustin,
thanks — I was aware of that, but have failed at trying to carry over the same post exceprt style on a new template. Say my Reading settings were to have Posts on homepage, the style/layout that Serene theme displays, I want to replicate it exactly, but on a custom frontpage/template in my child theme.
I’m familiar with css and but only a codex/stack overflow hack with php
I created a new front page template in my functioning child theme
<div id=”main-content”>
<?php
while ( have_posts() ) : the_post();
get_template_part( ‘content’, get_post_format() );
endwhile; ?>
</div> <!– #main-content –><?php
get_template_part( ‘includes/navigation’, ‘index’ );
else:
get_template_part( ‘includes/no-results’, ‘index’ );
endif;I plan on following the post with category & page containers – like widget blocks
Thanks for you help and time responding.
- This reply was modified 8 years ago by lukeratto.
Forum: Plugins
In reply to: [Meteor Slides] Slide caption below photoI used the above suggestion in conjunction with the Custom Slideshow Template – https://www.endlessturns.com —
So yes, with your help, I was able to get the titles displaying, but I’d like to display ALL the titles in the slide show at once – and as the slides rotate, have the corridponding titles display a style change accordingly (like a or <underline>)
thanks again @JoshLeuze
Forum: Plugins
In reply to: [Meteor Slides] unable to set featured/upload new slide@josh — there definitely is still a conflict, but it’s working, regardless of the funky upload process, I couldn’t sort out the conflicting plug-in — so going with it for now.
so, to confirm, the conflict is when I am on the screen to select the Featured Image/Upload image — there is no secondary window that appears, it’s just the upload window, so I can upload and/or select the Featured Image, but then there is no other step for me to take to continue is to go back to the dashboard (back nav in browser or reload the dashboard) I’ve tried varying the browser, to see if there was a connection, tried Chrome, Safari or Firefox –
If I figure out the conflicting plugin I’ll let you know.
thanks
Forum: Plugins
In reply to: [Meteor Slides] Slide caption below photogreat! thanks —
and to make all the slide titles visible at the same time? (and linkable to the defined URL?)
BTW – @josh, all this tech/support is pretty amazing. Thanks!
Forum: Plugins
In reply to: [Meteor Slides] unable to set featured/upload new slideso the process, for me to get it to work… just an FYI
After clicking into the “add new slide” screen, I have to title it (define the link if needed) then select the slideshow and publish it — only then, after I have published can I then “select the featured image”
Forum: Plugins
In reply to: [Meteor Slides] unable to set featured/upload new slidesorted it — I reinstalled, and hit publish slideshow first, then added a slide — it’s saving now.
thanks for your time & help
Forum: Plugins
In reply to: [Meteor Slides] unable to set featured/upload new slideso there is no “lightroom” style hover when I click to add a new slide – no way to just close the window — I have to reload the back to the Slideshow or Dashboard.
Forum: Plugins
In reply to: [Flamingo] Add [_url] to the Admin side of FlamingoAlso, any way to change the CHANNEL name in the Flamingo Admin to mirror the name of the contact form?
I am using 2 different forms and it would be nice to be able to search the submissions by type of the form.
Forum: Plugins
In reply to: [Flamingo] Show other fields in Inbound Messages admin columns?can we add tags to the Admin portion that track?
I wanted to include the [_url] in my Admin portion of Flamingo so I know what page/post URL the form was sent from. It’s included in my MAIL portion, but it’d be nice add to the admin side as wellBusted Contact Form – linked to W3 Total Cache
I just had the same issue, deactivated the new version of W3 Total Cache (Version 0.9.2.5) and it fixed my Contact Form issue. I was getting an error after clicking submit on my contact form “Are you sure you want to do this?” with no actionable command option
still trying to figure out how to adjust the php so that the sent email subject, by default sends the page/post title as opposed to the website name or defined subject name.
how would I adjust the code – assuming it’s around – line #509 on grunion-contact-form.php
$default_subject = "[" . get_option( 'blogname' ) . "]";
if I was able to define the post title in the ‘blogname’ spot I think it would work.. but by using the below code it does not — obviously as you read it your going to shake your head at my php ignoranceso that
('blogname')
is(<?php single_post_title(); ?>)
right now the default subject of the email just says “[the website name] Sidebar”
Thanks Jeremy,
TOTALLY would love to see the sidebar Custom Contact Form send info back from the page/post it was sent from & a custom landing page/message option.
Many thanks for the reply and your time.
@jeremy any way to add a shortcode to the custom form (using in sidebar widget) to track the page/post it was sent from – sending me that page/post title in the email?
After form is submitted from user, can I assign a custom landing page?
Is there a page right up regarding all of Custom Form shortcodes, tips, tricks? As I hate wasting your time – but I couldn’t seem to find any other than the basics here : https://jetpack.me/support/contact-form/
thanks for your time