Forum Replies Created
-
AuthorPosts
-
peterlazParticipant
thanks for the clarification. your suggestion works.
peterlazParticipantThis should be an easy change.
Go to Settings > Reading > Blog pages show at most will show 3 posts. Just changes this to however many posts you need. Then save changes.
Hope that helps!
peterlazParticipantI was able to achieve the desired outcome with the following codes
add_action( 'loop_start', 'remove_entry_meta' ); function remove_entry_meta() { if ( is_singular('post') ) return; remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); }
peterlazParticipantThanks Victor for the suggestion.
However, it also removes the meta entry from the post itself. I just want it to be removed from the search listing only.
Thanks.peterlazParticipant.page > .entry-header { background: url(images/section-background.jpg) repeat 0 0; background-color: #333; border-bottom: 0px solid #ececec; color: #000; margin: 0; }
The background image that I am using for the page header also appears in the search listing. How can this image be removed in a search listing? Thanks
peterlazParticipantIt worked like a charm. Thanks Victor.
peterlazParticipantThank you for your assistance.
The CSS that I have Used is applicable to all the pages when viewed individually. It is not in the .home-bottom context.
For example, http://plan2040.com/test-page-1/
However, this CSS entry also applies to the pages listed in a search list. How can I prevent the CSS entry from being applied to the search listing? You can simulate the problem by searching something on the website.
Thanks.
peterlazParticipantThanks Victor for the analysis.
Basically it is a silly mistake of mine. I updated your feedback to the plugin developers and they have resolved the problem.
This is their response
when you copy/paste the code from here the quote marks paste wrong (they paste as slanted single quotes), so I had to replace the single quotes in the pasted code manually and the code works as expected.
I am glad it is resolved now.
Thank you again for taking your time to response to my request for help.
peterlazParticipantThanks for the help.
peterlazParticipantI posted the HTML codes within the shortcode
and wonder why it is appearing with all the special characters.
peterlazParticipantThanks for the guidance.
I have tried various values for the margin and padding without being able to remove the bottom spacing.
I am using the parallax pro child theme and wonder what is causing the problem.Here are codes that I am using.
<div class="container"> <div class="row"> <div class="col vam" style="width:340px"><img src="http://www.plan2040.com/wp-content/uploads/2014/12/add_340x300.jpg" alt="address" width="340" height="300" /></div> <div class="col"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3320.583649851184!2d-117.79161238445111!3d33.66794844533004!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0000000000000000%3A0xd34d139a325c7385!2sWoodbridge+Willows!5e0!3m2!1sen!2smy!4v1446120827015" width="800" height="300" frameborder="0" style="border:0" allowfullscreen></iframe></div> </div> </div>
@media (min-width: 30em) { .row { width: 100%; display: table; table-layout: fixed; } .col { display: table-cell; } } .container { margin-right: -40px; margin-left: -40px; } .row { width: 100%; border: 2px solid darkblue; color: navy; padding: 0px; padding-bottom: -20px } .vam { vertical-align: middle; }
October 20, 2015 at 6:51 pm in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168631peterlazParticipantIs there another way to do the whole thing?
October 20, 2015 at 6:25 pm in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168630peterlazParticipantAdding a search form to the header widget area is not a problem. If I add one, sure it appears. But that is not the way toggle search function is suppose work. I followed the tutorial to the letter as outlined in
http://genesisdeveloper.me/adding-toggle-search-form-using-parallax-pro-theme/I just can't understand why when I click on the dashicon the search form does not pop up?
Thanks
October 20, 2015 at 5:30 pm in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168625peterlazParticipantI am not seeing any reply. How do I view reply marked as private?
October 20, 2015 at 4:56 pm in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168621peterlazParticipantThanks for the guidance.
I tried the code as suggested. But the search form is still not showing up.
http://www.plan2040.com/wp-content/themes/parallax-pro/js/toggle-search.jsThanks.
October 20, 2015 at 4:25 pm in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168619peterlazParticipantFollowed every code as outlined in http://genesisdeveloper.me/adding-toggle-search-form-using-parallax-pro-theme/
There was suggestion by a reader Brian in the tutorial to use the following code for Javascript. I tried that without any success.jQuery(document).ready(function($js) {
$js(".toggle-search a").click(function() {
$js(".search-wrap").slideToggle('slow', function(){
$js(".toggle-search").toggleClass('active');
});
});
});October 20, 2015 at 8:16 am in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168574peterlazParticipantThanks for prompt reply. Much appreciated.
Yes, there was an error in the spelling of the file name. I have corrected it and the toggle-search.js file is now correctly located in the theme's JS folder. However, the result is still not showing up.
Thanks.
October 20, 2015 at 7:20 am in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168566peterlazParticipantThanks for the prompt reply and guidance.
I carried out all the steps outlined in the tutorial and have added the codes as
//* Enqueue scripts and styles
add_action( 'wp_enqueue_scripts', 'parallax_enqueue_scripts_styles' );
function parallax_enqueue_scripts_styles() {wp_enqueue_script( 'parallax-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
wp_enqueue_style( 'dashicons' );
wp_enqueue_style( 'parallax-google-fonts', '//fonts.googleapis.com/css?family=Montserrat|Sorts+Mill+Goudy', array(), CHILD_THEME_VERSION );
wp_enqueue_script( 'toggle-search', get_bloginfo( 'stylesheet_directory' ) . '/js/toggle-seach.js', array( 'jquery' ), '1.0.0' );
}However, I am not getting the desired results.
October 20, 2015 at 6:22 am in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168560peterlazParticipantAppreciate some guidance on how do that.
ThanksOctober 20, 2015 at 5:17 am in reply to: Parallax Pro-add toggle search to the Primary navigation bar #168557peterlazParticipantI created a new file in Dreamweaver CS6 with the following codes
$(".toggle-search a").click(function() {
$(".search-wrap").slideToggle('slow', function(){
$(".toggle-search").toggleClass('active');
});});
and saved the file as toggle-seach.js
Is that a problem? I will appreciate some guidance on creating Javascript files correctly.
Thanks
-
AuthorPosts