Forum Replies Created
-
AuthorPosts
-
Ben @ Inbound CreativeMember
Hi Gael,
When you say hide the address, do you mean hide the map or the ZIP or something else?
Ben @ Inbound CreativeMemberI can't see any issues on my end.
When it happens again, please take a screenshot and post it here.
More than happy to help when I can see what the problem is.
Ben @ Inbound CreativeMemberHi,
It is possible, but it would involve a lot of PHP and CSS. As such, it's beyond the scope of what could be done in the community support forum.
However, if you want a quote about how much it would cost to achieve, then visit Genesis Customizations and submit a request.
October 27, 2014 at 2:30 am in reply to: how to create mobile responsive header lifestyle pro #129393Ben @ Inbound CreativeMemberFirst of all, delete the lines where it says:
.site-header { background-image: url(http://www.wonderfulhealthyhabits.com/wp-content/uploads/2014/10/julieg-header.jpg); width: 1140px; height: 200px; }
Just above /* Logo, hide text */. You're duplicating the header.
Then in the media query you've posted, change
height: 80px;
tomax-height: 80px;
and
width: 414px;
towidth: 100%;
Do all that and your problem should be sorted. Let me know if it isn't.
Ben @ Inbound CreativeMemberHey,
I just had a look at that the link but there are only eight boxes. Can you make sure all nine are showing and reply to this thread.
When you do, I'll take a look for you. 🙂
Ben @ Inbound CreativeMemberDo you mean you want it to appear like this?
Ben @ Inbound CreativeMemberHi Vanessa,
You'll need to have a custom page template coded. Unfortunately, that goes beyond the scope of what it would be fair to offer in the community support forums.
However, if you drop a request to Genesis Customizations, you'll be able to get that page template pretty soon.
October 27, 2014 at 2:10 am in reply to: Genesis Responsive Slider: Read more button & excerpts #129387Ben @ Inbound CreativeMemberIf you add this to your functions file at the bottom.
//* Add Read More Link to Excerpts add_filter(‘excerpt_more’, ‘get_read_more_link’); add_filter( ‘the_content_more_link’, ‘get_read_more_link’ ); function get_read_more_link() { return ‘… <a href="’ . get_permalink() . ‘">Read More…</a>'; }
That will display it as text.
If you want it to be displayed as a button, then paste this at the bottom of your functions file.
// Add Read More Link to Excerpts add_filter(‘excerpt_more’, ‘get_read_more_link’); add_filter( ‘the_content_more_link’, ‘get_read_more_link’ ); function get_read_more_link() { return ‘… <a class="button" href="’ . get_permalink() . ‘">Read More…</a>'; }
You can also change the text of the button by editing between the > and < on the last line of that code where it currently says Read More...
Let me know if you need any more help.
Ben @ Inbound CreativeMemberHi Trine,
I'm not sure how you've coded it, but your issue is that the text container has the class
two-third
. It needs to betwo-thirds
with an s on the end.I added the extra s via Inspect Browser and it worked. So if you can make the change on your end, it should work.
Let me know if you need any more help.
October 27, 2014 at 2:02 am in reply to: Image in slider getting too thin on larger screens (minimum pro) #129382Ben @ Inbound CreativeMemberThe slider plugin you are using should have the ability to set the maximum height somewhere in the options. Right now, it's set to
max-height: 523px;
.Have a look in the options and see if there is somewhere to change the setting. Otherwise you'll need to make some changes to your CSS file.
Let me know if you need any more help.
Ben @ Inbound CreativeMemberHi Marjolein,
You'll see this kind of codesnippet everywhere.
When you want to paste in the working bit, just delete the bit that says:
<?php //* Do NOT include the opening php tag
Whenever you see a line that starts with a //* it's a comment. We usually keep these in to make it clear what the function is doing. It's no necessary for the code to work, but it's advisable to leave it in.
Hope that helps.
Ben @ Inbound CreativeMemberYou need to set a featured image on each of the pages that those boxes link to. That's what controls the image that appears there.
Ben @ Inbound CreativeMemberI've not used a Dribbble plugin before, so I can't comment on that.
I just wanted to (perhaps) save you a little time and make you aware – if you weren't already – that you can't just create a Dribbble account and start posting. You need to be drafted or buy a team account.
September 29, 2014 at 3:37 am in reply to: Need Help Implementing Infinite Scroll W/ Genesis Grid #126124Ben @ Inbound CreativeMemberDrop either @garyj or @sridar a shout on Twitter.
Ben @ Inbound CreativeMemberAh nice. Someone's developed a plugin that does the first suggestion for you without the need to faff around with an FTP client.
Definately take a look at Kelly's link.
Ben @ Inbound CreativeMemberDamn. I thought I'd put that in a code box.
Yup. Kellylise is right.
September 24, 2014 at 5:42 am in reply to: Shortcode widget plugin that is compatible with genesis for 2nd landing page? #125532Ben @ Inbound CreativeMemberI missed out a little bit of info, so just have a re-read over the stuff before you do anything. 🙂
September 24, 2014 at 5:40 am in reply to: Shortcode widget plugin that is compatible with genesis for 2nd landing page? #125530Ben @ Inbound CreativeMemberSimply copy and paste the below code into a new file and call it landingpage.php
<?php /** * This file adds a customisable page to your theme. * * @author Advice Media * @subpackage Customizations * * Template Name: Landing Page */ add_action( 'genesis_meta', 'am_home_genesis_meta' ); /** * Add widget support for homepage. If no widgets active, display the default loop. * */ function am_home_genesis_meta() { if ( is_active_sidebar( 'home-top' ) || is_active_sidebar( 'home-middle' ) || is_active_sidebar( 'home-bottom' ) ) { // Force content-sidebar layout setting add_filter( 'genesis_site_layout', '__genesis_return_content_sidebar' ); // Add am-home body class add_filter( 'body_class', 'am_body_class' ); // Remove the default Genesis loop remove_action( 'genesis_loop', 'genesis_do_loop' ); // Add homepage widgets add_action( 'genesis_loop', 'am_landing_page_widgets' ); } } function am_body_class( $classes ) { $classes[] = 'landing'; return $classes; } function am_landing_page_widgets() { genesis_widget_area( 'landing-top', array( 'before' => '<div class="home-top widget-area">', 'after' => '</div>', ) ); genesis_widget_area( 'landing-middle', array( 'before' => '<div class="home-middle widget-area">', 'after' => '</div>', ) ); genesis_widget_area( 'landing-bottom', array( 'before' => '<div class="home-bottom widget-area">', 'after' => '</div>', ) ); } genesis();
You'll also need to add the following sidebars underneath the others in your functions.php file:
genesis_register_sidebar( array( 'id' => 'landing-top', 'name' => __( 'Landing Page | Top', 'am'), 'description' => __( 'Section for the landing-top', 'am' ), ) ); genesis_register_sidebar( array( 'id' => 'landing-middle', 'name' => __( 'Landing Page | Middle', 'am'), 'description' => __( 'Section for the landing-middle', 'am' ), ) ); genesis_register_sidebar( array( 'id' => 'landing-bottom', 'name' => __( 'Landing Page | Bottom', 'am'), 'description' => __( 'Section for the landing-bottom', 'am' ), ) );
I've left the landing page widget areas' css the same as the home page so that you won't need to dive in an add a ton of css.
Once you're done, create a new page and then in the template menu on the right hand side, select Landing Page as the template.
Hey presto, you're done.
September 24, 2014 at 5:22 am in reply to: Shortcode widget plugin that is compatible with genesis for 2nd landing page? #125528Ben @ Inbound CreativeMemberI can recreate the whole home page template for you if that's easier? You would then just create a page and select the custom template.
Ben @ Inbound CreativeMemberIt's probably something you've done in the widget you've used. Is it Genesis Featured Posts?
-
AuthorPosts