Forum Replies Created
-
AuthorPosts
-
andytcParticipant
No , it didn’t mean lifetime support , it meant access to all future themes as well. It wasn’t cheap either.
“ you get unlimited updates, themes and support for life plus every 3rd party theme they release in their marketplace”
andytcParticipantYes , I feel the same. Genesis isn’t doing it for me anymore, I’d rather spend some time moving all my clients themes away from the Genesis framework so I don’t have to suffer any more updates. Loads of themes have been ‘Archived’ , meaning finished and new ones not available as promised when the package was purchased.
TBH it gets it the way rather than be useful these days anyway.andytcParticipantSo studiopress has reneged on the pro plus package deal. We aren’t getting ‘every 3rd party theme they release’
June 3, 2021 at 4:52 am in reply to: How To Add Text Next To Logo Image In Header – StudioPress Genesis Altitude Pro #504192andytcParticipantAltitude Pro already has a header right widget area ready to go , it's just been 'unregistered' in the functions.php
To enable it , find line 103 in the themes functions.php - the code below
// Unregister the header right widget area. unregister_sidebar( 'header-right' );
and comment that out - as below
// Unregister the header right widget area. // unregister_sidebar( 'header-right' );
You can find this file using the theme editor in WordPress as shown in the tutorial you linked to (ignore the rest of it) , just comment it out as shown above and you'll then find a header right widget area ready to use in the widgets section. Of course , you'll need to add your own CSS after doing this to make it work the way you want.
andytcParticipantHow have you added the video ?
By default , no browser will autoplay a video that has audio enabled , the audio must be muted in order for it to autoplay.
andytcParticipantI wouldn't do that , I'd just add some code to the childtheme functions.php to remove the sidebar - something like below
if (wp_is_mobile()) { remove_action ('genesis_sidebar','genesis_do_sidebar'); }
That will probably achieve what you want , you could adjust that conditional further if you wished. You'll need to test that thoroughly using real mobile devices , DEV tools mobile simulation won't respond to that.
Personally , I'm not keen on using
wp_is_mobile
on the front end , it literally targets any device considered as 'Mobile' , tablets in any orientation for example.Using
display: none;
in CSS is the most common methodandytcParticipantGive this a try -
.widget_recent_entries li { display: flex; flex-flow: column-reverse; }
Seems to work ok with shorter titles , give it a whirl
andytcParticipantThe search pages already have a body class added that can be used to target the search page only -
.search
and also.search-results
Just pre-fix your styles with these to affect only search pages. any good ?
andytcParticipantNo problem , just one thing , I notice you have /a/contact-us/ in the link now ?
Currently this -
<a class="button" href="a/contact-us/">Contact us to schedule your complimentary consultation.</a>
Should be just this -
<a class="button" href="/contact-us/">Contact us to schedule your complimentary consultation.</a>
still works , but just sayin' 🙂
andytcParticipantReplace the # with a /
/contact-us
March 15, 2021 at 4:08 pm in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503476andytcParticipanttry changing the values directly in the style sheet rather than the customiser.
line 1815
.flexible-widgets.widget-odd .featuredpost:last-of-type .entry, .authority-grid.archive:not(.woocommerce-page) .content .entry { float: left; padding: 0 35px; width: 50%; }
line 1826
.flexible-widgets.widget-odd .featuredpost:last-of-type .entry:nth-of-type(2n+1), .authority-grid.archive:not(.woocommerce-page) .content .entry:nth-of-type(2n+1) { clear: left; }
March 15, 2021 at 3:20 pm in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503474andytcParticipantThe styles in the customiser are commented out , remove the comments completely for now or move the comment closing tag to the right place on the first comment.
March 15, 2021 at 2:54 pm in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503472andytcParticipantOk , you need victors code as well , so 2 changes. Did you modify both ?
March 15, 2021 at 11:32 am in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503469andytcParticipantFind this entry and change the (3n+1) to (2n+1) as shown below to remove the staggered look. The layout will automatically respond to mobile devices as normal. Test it in DEV tools in your browser.
.flexible-widgets.widget-odd .featuredpost:last-of-type .entry:nth-of-type(2n+1), .authority-grid.archive:not(.woocommerce-page) .content .entry:nth-of-type(2n+1) { clear: left; }
February 12, 2021 at 9:00 am in reply to: php function to remove (hide) menu items from "Editor" dashboard #503028andytcParticipantYou’re welcome , I’m happy it’s what you wanted.
February 12, 2021 at 5:34 am in reply to: php function to remove (hide) menu items from "Editor" dashboard #503021andytcParticipantKeeping the code in place that you've used to change the capability for editors , you can add this to remove > Themes and the Customiser.
// NON ADMIN ROLE APPEARENCE MENU EDITS if ( ! current_user_can('manage_options') ) { // Remove submenu pages for non admins. function wpdocs_adjust_the_wp_menu() { $page = remove_submenu_page( 'themes.php', 'themes.php' ); } add_action( 'admin_menu', 'wpdocs_adjust_the_wp_menu', 999 ); // Remove the customsier add_filter('map_meta_cap', function($caps, $cap, $user_id, $args) { if ('customize' == $cap) return ['do_not_allow']; return $caps; }, 10, 4); }
andytcParticipantPagination is working , maybe get in touch with this user who seems to be using the exact same code for 'tracks' and the exact same problem , I problem I don't see , and also that code, if actually used , would create a blank page because it isn't calling the genesis function after removing the loop.
https://studiopress.community/topic/pagination-not-working-in-genesis-framework/#post-502525
weird ?
andytcParticipantOk , I've checked and the styles aren't showing up in styles.css , so that's the problem.
/* Widgets ---------------------------------------------------------------------------------------------------- */ .widget { word-wrap: break-word; } .widget:last-child { margin-bottom: 0; } .widget ol > li { list-style-position: inside; list-style-type: decimal; padding-left: 20px; text-indent: -20px; } .widget li li { border: 0; margin: 0 0 0 30px; padding: 0; } .widget_calendar table { width: 100%; } .widget_calendar td, .widget_calendar th { text-align: center; }
Try adding the styles I gave you directly into the custom CSS section in the customiser.
andytcParticipantDidn’t do much
What did it do and what didn’t it do ?
Did you clear your browser cache ?
Where did you place the CSS ?
You could place the code and leave it there so we can take another look
andytcParticipantEDIT : Leave out this line , not needed.
.sidebar .mejs-container { padding-top: 56.25%; }
-
AuthorPosts