Forum Replies Created
-
AuthorPosts
-
September 13, 2016 at 6:00 am in reply to: Not able to find code to change footer text in functions.php #193068
Doug Edgington
MemberThe code is not in the Genesis Sample Theme by default. You will need to add it. The third option is likely the one you want "customize the entire footer text". See below.
//* Customize the entire footer remove_action( 'genesis_footer', 'genesis_do_footer' ); add_action( 'genesis_footer', 'sp_custom_footer' ); function sp_custom_footer() { ?> <p>© Copyright 2012 <a href="http://mydomain.com/">My Domain</a> · All Rights Reserved · Powered by <a href="http://wordpress.org/">WordPress</a> · <a href="http://mydomain.com/wp-admin">Admin</a></p> <?php }
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberDoug Edgington
MemberYou are using the wrong class selector for the page. Try the following instead:
.postid-9079 #title-area { display:none; }
Doug Edgington
http://www.dougedgington.comSeptember 12, 2016 at 6:25 am in reply to: Want to change the widget bar color in Modern Studio Pro Theme #193012Doug Edgington
MemberYou would have to modify the following style declaration with your style sheet. Below is an example of changing the background color to white.
.sidebar .widget-title { background-color: #ffffff; }
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberAre you referring to the footer copyright information? If so, the easiest solution is to use a Genesis Simple Edits Plugin. It will allow you to modify the footer text.
https://wordpress.org/plugins/genesis-simple-edits/It can also be modified via a code snippet.
Here is more information: https://my.studiopress.com/snippets/footer/
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberYou can paste a snippet of your archive-portfolio.php in here and I can take a look. Is the filter functionality something that is also added to the archive-portfolio.php, or are you using a plugin?
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberNo problem. When viewing the theme portfolio template, look at the genesis_get_image function. In your case, you are going to want to call portfolio-image, since this is the image size that you declared.
What specific issue was you having with the site in responsive mode?
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberDo you have a StudioPress Pro Plus theme package? If so, look at the portfolio template for the Executive Pro theme. This will give you an idea of how to call a specific image size.
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberI am using Safari and FireFox on a Mac. And I am not noticing any differences. Did you possibly resolve the issue already?
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberI haven't really experimented with the Genesis Portfolio Plugin. But it appears to add an image size automatically. And it should automatically output that image size on the portfolio archive page. But if you uploaded the images after the image size was in place, they would not be cropped. This could cause the full size image to be referenced. Or did you possibly create your own portfolio template? If so, you may not be calling the appropriate image size.
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberDoug Edgington
MemberIf you are wanting to remove the fade up functionality all together, you can comment out the following line of code within your functions.php file to prevent the associated Javascript from being loaded.
//wp_enqueue_script( 'digital-fadeup-script', get_stylesheet_directory_uri() . '/js/fadeup.js', array( 'jquery' ), '1.0.0', true );
Or if you want to remove the feature from specific sections only, you can try removing the "fadeup-effect" class from the associated sections within your front-page.php file.
Make sure to backup any files that you change, so you can revert back to the original if needed.
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberThere is a wrapper around the home page 1 section content limiting the size of this area to 782px. You can increase the size of the wrapper to allow the image to be wider. You would need to modify the associated style declaration within your style sheet. Below is example of increasing the area to 1280px.
.home-featured .wrap { max-width: 1280px; }
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberIn order to reduce the size of the overlay related text, you can single it out within your css declarations. Below is an example.
.portfolio-overlay h3 { font-size: 25px; line-height: 1.2; margin-bottom: 5px; } .archive-description .portfolio-overlay p { font-size: 14px; line-height: 1.2; margin-bottom: 0px; }
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberI got your reply via email, but it is not showing up here in the forum. Maybe it got flagged?
I looked at the updated version of your portfolio. And you are retrieving the full-size image rather than a cropped thumbnail. This is likely why your images don't all match.
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberDid you create your own portfolio post type, or are you using some type of plugin?
For my personal website, I created a portfolio custom post type. Then I control the output by creating a custom portfolio archive template ( archive-portfolio.php ).
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberThere is no page id associated with it, since it is a portfolio post type archive. You can change the page layout via Portfolio-->Archive settings.
Are you trying to single something out using CSS? If so, you can use .post-type-archive-portfolio rather than the page id.
Doug Edgington
http://www.dougedgington.comSeptember 4, 2016 at 6:00 am in reply to: Metro Pro featured images not showing in post. Did I miss something? #192568Doug Edgington
MemberI haven't used this particular theme, but it likely does not automatically output the featured image at the top of the post. You will likely have to add it via your editor, above the content.
Doug Edgington
http://www.dougedgington.comSeptember 4, 2016 at 5:48 am in reply to: Remove Entry Meta (below) on Blog/Archive Pages (Altitude Pro) #192566Doug Edgington
MemberIf you are using Genesis Simple Edits, you should be able to leave the following two fields empty to remove the entry meta from above and below the posts. This will apply to both the archive and single posts.
Entry Meta (above content)
Entry Meta (below content)
Doug Edgington
http://www.dougedgington.comDoug Edgington
MemberYes, I think there has been two releases - 1.0 and 1.1. They are getting ready to release a third, which should address any bugs.
Here are the issues that I found in version 1.1:
A sidebar displays at the bottom of the home page even when the "front page content settings" within the customizer has content disabled.
The portfolio template driven page has responsive issues.
No portfolio thumbnail is created for the portfolio template.
Doug Edgington
http://www.dougedgington.com -
AuthorPosts