Forum Replies Created
-
AuthorPosts
-
nciske
MemberI posted a fix in this thread:
But I'm guessing (hoping?) they'll be releasing an official patch/fix soon.
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberThere's a typo in the upgrade function that just got me as well.
How I fixed it:
/wp-content/themes/genesis/lib/functions/upgrade.php
On line 604: changegenesis_upgrade_2502togenesis_upgrade_2503then refresh the page with the missing function error.Not sure if they meant that to be named 2502 or 2503, but the actual function is named 2503, hence the missing function error.
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberOptions
- Tweak it in styles.css or Simple Custom CSS
- Use a Genesis 'tweaks" plugin like Design Palette Pro
- Use a plugin like CSS Hero
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberCreate a post/page and use the comments feature built into WordPress or use a plugin like:
https://wordpress.org/plugins/in-memoriam-light-a-candle/screenshots/
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberCheck out Genesis Simple Sidebars:
Use the default primary sidebar for blog widgets, then choose a custom sidebar for your pages.
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberYou want the articles to be on the site, or link offsite?
On site
Any theme will work, but you'll need a way to import the RSS feeds as posts, add them to the right category (or a custom taxonomy) and use the taxonomy widgets to display each feed.Link offsite
A news style theme with a bunch of RSS widgets would work.
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberOr, as one snippet: tweak the markup as needed for your site.
//* Add Title & Alt to Soliloquy Slider add_filter( 'soliloquy_output_caption', 'sol_soliloquy_title_before_caption', 10, 5 ); function sol_soliloquy_title_before_caption( $caption, $id, $slide, $data, $i ) { // Check if current slide has a title specified if ( isset( $slide['title'] ) && !empty( $slide['title'] ) ) { $caption = '<h4 class="title">' . $slide['title'] . '</h4>'; $caption .= '<h4 class="alt">' . $slide['alt'] . '</h4>'; $caption .= '<div class="caption">' . $slide['caption'] . '</h4>'; } return $caption; }
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberYour second code snippet replaces the caption variable with the alt text. If you want to add to it instead, you need to concatenate
.=vs. replace=.//* Add Alt Text to Soliloquy Slider add_filter( 'soliloquy_output_caption', 'sol_soliloquy_alt_before_caption', 10, 5 ); function sol_soliloquy_alt_before_caption( $caption, $id, $slide, $data, $i ) { // Check if current slide has a title specified if ( isset( $slide['alt'] ) && !empty( $slide['alt'] ) ) { $caption .= '<h4 class="alt">' . $slide['alt'] . '</h4>'; $caption .= '<div class="caption">' . $slide['caption'] . '</h4>'; } return $caption; }
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberGreat... but you didn't answer my question:
"The calendar (which appears to be All in One Calendar vs The Events Calendar) is printing about as I’d expect… what are you/the client expecting that’s not happening?"
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberThe calendar (which appears to be All in One Calendar vs The Events Calendar) is printing about as I'd expect... what are you/the client expecting that's not happening?
The expanded URLs are a bit kludgey, but that's the AI1EC styling, not Genesis:

More:
https://time.ly/forums/topic/bug-when-printing-shows-entire-date-url/Also, this may be a better print plugin to try as it's Genesis specific:
Another (simple but solid) calendar to try (free and paid versions exist):
https://pippinsplugins.com/products/sugar-event-calendar/
You can see on the live demo that the calendar prints pretty much verbatim:
https://pippinsplugins.com/demo-sugar-calendar/
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberThis should get you started:
http://wpsmackdown.com/add-content-post-authors-comment/I'd strongly recommend you use a plugin like CryptX to obfuscate the emails of your users (the JavaScript method works best). They may have given you permission to use them, but allowing them to be spammed mercilessly was unlikely part of that agreement 😉
Even better, never output the email and use a seperate form to allow email to go to your users without ever revealing their email (until they respond of course).
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
Member.header-image .site-title & gt; a { float: left; min-height: 180px; width: 100%; }Needs to be:
.header-image .site-title > a { float: left; min-height: 180px; width: 100%; }e.g. replace "& g t ;" with a left angle bracket. The forum keeps mangling the code...
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberSize wise: 1600x1200 or larger would be best, but bigger means larger file size. A 4:3 aspect ratio would work best as most computer screens are that (or close) and it's easy to crop that to 16:9, but cropping 16:9 to 4:3 loses a lot of data.
Possibly relevant:
http://travlanders.com/wordpress/2013/09/studiopress-minimum-pro-background-image-options/
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberA real answer to this thread:
Easy way: Insert the ads all the places you want them to appear, then show/hide them with media queries so they only appear at certain resolutions.
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberOops, replied to the wrong post. Please disregard.
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberTry this (in your max-width 1023px media query):
.header-image .site-title > a{ float: left; min-height: 180px; width: 100%; } .site-title a{ background: url("http://armidaletreegroup.org.au/wp-content/uploads/cropped-arm-tree-group-header-150-v2.png") repeat-x; background-size: contain; }
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
Membercover or contain didn’t cut it?
This doesn't stretch the images?
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberManipulating WordPress SEO’s choice of Open Graph image
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
Member'the logo does not resize down accordingly"
Looks like it resizes to me... can you better explain what you were expecting... and what's actually happening? Bonus points for a screenshot of how you want it to look 😉
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0nciske
MemberTry this (in your max-wdith 1023px media query):
.header-image .site-title > a{ float: left; min-height: 180px; width: 100%; } .site-title a{ background: url("http://armidaletreegroup.org.au/wp-content/uploads/cropped-arm-tree-group-header-150-v2.png") repeat-x; background-size: contain; }
Nick Ciske | https://luminfire.com/ | @nciske
Did I help you? Say thanks: http://bit.ly/1lahwy0 -
AuthorPosts
