Forum Replies Created
-
AuthorPosts
-
Graham
MemberThought so. Thanks for your confirming opinion.
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberStart here
https://codex.wordpress.org/AJAX
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberNot used it, yet have heard good things
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberGraham
MemberScroll triggered box for the sign up form at bottom
Scroll then fix - for the site header and nav-wrap
e.g. https://wordpress.org/plugins/scroll-triggered-boxes/
There's is done with a bit of jQuery combined with some css
jQuery( function($) { $navs = $( '.nav-wrap, .site-header' ); $newsletterPopup = $( '.newsletter-signup-footer' ); $( window ).scroll( function() { if ( $( window ).scrollTop() > 105 ) { $navs.addClass( 'fixed' ); $newsletterPopup.addClass( 'popup' ); } else { $navs.removeClass( 'fixed' ); $newsletterPopup.removeClass( 'popup' ); } }); } );
My JustGiving page: https://www.justgiving.com/helping-graham-give
June 15, 2015 at 5:19 pm in reply to: How To Chance Agent Press Pro Featured Background Area #156323Graham
Memberno. it is not php, it is CSS
place it at the bottom of the CSS file
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberA thought...
You do have W3 Total Cache enabled .. maybe you need to clear the cache manually before you see any changes?
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
Memberadd_filter( 'comment_form_defaults', 'child_comment_form_defaults' ); function child_comment_form_defaults( $defaults ) { $defaults['title_reply'] = 'Have your say'; return $defaults; }
Placed at the bottom of your functions.php file should change the wording to "Have your say"
Have you tried it?
My JustGiving page: https://www.justgiving.com/helping-graham-give
June 15, 2015 at 4:55 pm in reply to: How To Chance Agent Press Pro Featured Background Area #156315Graham
MemberCSS
.home-featured .widget { background: transparent none repeat scroll 0 0; }
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
Member<?php //* Do NOT include the opening php tag shown above. Copy the code shown below. //* Modify the speak your mind title in comments add_filter( 'comment_form_defaults', 'sp_comment_form_defaults' ); function sp_comment_form_defaults( $defaults ) { $defaults['title_reply'] = __( 'Leave a Comment' ); return $defaults; }
http://my.studiopress.com/snippets/comments/
My JustGiving page: https://www.justgiving.com/helping-graham-give
June 14, 2015 at 10:03 pm in reply to: I want the homepage to show different featured posts everyday, how do I do that? #156208Graham
MemberNot quite what you're after .. yet perhaps use the Featured Posts Widget.
Set the
number of posts to show = 6
andOrder By = Random
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberSounds like you're setting the link on the gallery images to the image file itself. These are the default image file displays for Firefox and chrome.
Use an image attachment template to have more controlThe Executive pro theme does not have a image attachment template.... (Disappointingly, I've not seen one yet in a StudioPress theme, but happy to be corrected), so WordPress defaults to using the next available template in the theme following the hierarchy.
https://developer.wordpress.org/themes/basics/template-hierarchy/
In this case, the single.php that is found in the parent Genesis theme ( the same that is used to display single blog posts )
An option would be to customise the Executive Pro theme by adding your own template file for displaying image attachments ( image.php )
___
Other options could be using a carousel to display the gallery, check the one that comes with Jetpack as an example
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberSometimes a plugin doesn't need to be updated. I wouldn't consider it a cause for concern, we use it when required
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberCheck the fonts that are being used by the stylesheet against those that you have enqueued
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberOK great, thank you. That pointed me back on track
As it stands, adding that to my existing code wouldn't work as hoped. I would end up with one Organisation and the rest being CreativeWorks ,
Yet if I change the hook I use from
genesis_header
togenesis_before_entry
.. then all good.i.e.
add_action( 'genesis_before_entry', 'vlhdir_edits' ); function vlhdir_edits() { if ( get_post_type() == 'vlhdir_entry' ) { remove_filter( 'genesis_attr_entry', 'genesis_attributes_entry' ); add_filter( 'genesis_attr_entry', 'vlhdir_attributes_entry' ); // etc } } add_action( 'genesis_after_entry', 'vlhdir_remove_edits' ); function vlhdir_remove_edits() { if ( get_post_type() == 'vlhdir_entry' ) { remove_filter( 'genesis_attr_entry', 'vlhdir_attributes_entry' ); add_filter( 'genesis_attr_entry', 'genesis_attributes_entry' ); // etc } }
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberIf you are using the Genesis Responsive Slider, then check the maximum image width and height in the slider settings
Dashboard > Genesis > Slider Settings > Display Settings
The featured image associated with the post(s) that are being shown in the slider must be at least these dimensions
If they are less, then a gap will appear in the slider
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberAnother approach is to use 301 redirects and say good bye to the .html extensions
https://support.google.com/webmasters/answer/93633?hl=en
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberThat is being caused by padding on
.title-area
.title-area { padding: 20px 0; }
and padding-bottom of
.site-header
in the media query section@media only screen and (max-width: 960px) { .site-header { padding-bottom: 10px; } }
My JustGiving page: https://www.justgiving.com/helping-graham-give
Graham
MemberGraham
MemberHah! Snap
I've just answered the same on the same post in the General Discussion forum, I hadn't got to Design Tips and Tricks yet.
That's reassuring
http://www.studiopress.community/topic/white-gap-driving-me-nuts-help-please/#post-154053
My JustGiving page: https://www.justgiving.com/helping-graham-give
-
AuthorPosts