Forum Replies Created
-
AuthorPosts
-
January 18, 2018 at 11:49 pm in reply to: Unable to Search on Theme Editor as of WordPress 4.9.1. #215525
jamesparkin
Participant[RESOLVED]
When CodeMirror was added, an option was also added to the user profile page to disable it. I’m thrilled the WP devs did that; otherwise I would have been forced to write a plugin to disable that abomination.
Side-comment. For the life of me, I cannot understand why something that makes it easier to edit code was added to core at the same time an emphasis was made to keep people from doing that very thing. It’s like putting a plate of cookies in front of a youngster, giving them a glass of milk, but then saying to not touch the cookies because they’re bad for you.
credit: @diondesigns
https://wordpress.org/support/topic/browser-search-ctrlf-doesnt-work-with-new-code-editor/
jamesparkin
ParticipantGoto .genesis-nav-menu
Copy/paste those codes and add the div you want to the as a prefix .genesis-nav-menu div
.nav-secondary .genesis-nav-menu
Also if you move any section above/below wrap add; .wrap after the div
.nav-secondary .wrap
As far as I remember all themes work around the same or similar divs
jamesparkin
ParticipantI noticed in 4.9 in Firefox, CTRL-F doesn't search the entire editor, only the current visible viewport
jamesparkin
ParticipantThank you Gary, this is greatly appreciated. The full explanations really does help.
jamesparkin
ParticipantJon
You could consider using the Lazy Load plugin, to solve this issue temporarily.
- https://wordpress.org/plugins/lazy-load/
Speckyboy just released a post with tips on Optimizing Images to improve load times and UX.
- https://speckyboy.com/2016/03/25/optimize-images-websites-improve-performance-ux/
And you could consider, using conditional tags using Widget Logic to filter adds if mobile is active. And/or move certain ads to before and after sections using Genesis Hooks. You could consider having related posts in link form, after a post, to save load times too.
As for Parallax Pro, its a great theme for One Page, but I wasn't thrilled with the blog template. I tend to fallback on LifeStyle Pro, the Metro and Eleven40. They are clean magazine style themes, great for what you are wanting to do. There is also a code snippet that moves your sidebar to the top of your page on a screen less than 767px. You should highly consider putting the ad that converts the most, and one of the weakest to possibly push it.
As for your sidebar, I did notice multiple listings between Recent Posts and Popular Posts. Do you need three ads repeated twice?
Good Luck!
Sincerely
James ParkinJanuary 2, 2016 at 6:05 pm in reply to: Genesis 2.2.0 update causes conflict with FontAwesome for Menus #175412jamesparkin
ParticipantThis should correct issues with icons appears above menu items, disappearing on hover on and off.
1. Remember to use fa fa-icon in the css class do not use fa-icon anymore
2. Add Font awesome via CDN
3. IMPORTANT! You must use z-index:100; or your icon will flash on mouse over off
.genesis-nav-menu .menu-item:before {
color: #a5a5a3;
display: block;
font-family: Fontawesome;
font-style: normal;
font-weight: normal;
line-height: 0;
margin: 0;
position: relative;
z-index: 100;
text-align: left;
top: 27px;
vertical-align: bottom;
}.genesis-nav-menu .menu-item:hover:before {
color: #a5a5a3;
display: block;
position: relative;
z-index: 100;
}.genesis-nav-menu .current-menu-item:before {
color: #a5a5a3;
display: block;
position: relative;
z-index: 100;
}jamesparkin
ParticipantIts not that I want to hide them. I would like to have more than one parent mobile tab. Even multiple hamburger menus on nav-primary.
I'm disappointed that the nav right extras has been disabled too.
jamesparkin
ParticipantHandig
Have you been able to list yours posts in ascending order according to expiration date? I've been trying to get this code to work. Using Lifestyle Pro.
$args = array( ‘post_type’ => ‘event’, ‘posts_per_page’ => 15, ‘order’ => ‘ASC’, ‘meta_key’ => ‘_expiration-date’, ‘orderby’ => ‘meta_value’ );
$eventloop = new WP_Query( $args );
if ( $eventloop->have_posts() ) : while ( $eventloop->have_posts() ) : $eventloop->the_post();//All the Loop Content Goes Here
endwhile;
endif;jamesparkin
Participant- https://gist.github.com/anonymous/242ec351bfa50ad511e2
By the way I am trying to get it to work with Lifestyle Pro.
Thanks
-
AuthorPosts