Forum Replies Created
-
AuthorPosts
-
January 27, 2023 at 10:23 am in reply to: Error on Lifestyle Pro site – how to fix and can I no longer use this theme #506637
inisheer
ParticipantActually I followed up on your advice and seemed to have found the problem / removed. Thanks
January 25, 2023 at 9:51 am in reply to: Error on Lifestyle Pro site – how to fix and can I no longer use this theme #506631inisheer
ParticipantSorry just pinging here again. Does my previous post lead you to any conclusion on a possible fix?
Thanks
BobJanuary 19, 2023 at 4:02 pm in reply to: Error on Lifestyle Pro site – how to fix and can I no longer use this theme #506601inisheer
ParticipantVersions:
Wordpress 6.1.1
Genesis 3.4.0
Lifestyle Pro 3.2.4Error msg references line 248 in /lifestyle-pro/functions.php
This problem just popped up. I have recently updated WordPress and php version on this site.
It's been a long time since I worked on this site and I'm no ace coder. I might have done something here a long time ago which I don't remember. Here is code in that section of that php file. Make any sense to you?
236 }
237 //* TN Dequeue Styles - Remove Google Fonts from Genesis Sample WordPress Theme
238//* add_action( 'wp_print_styles', 'tn_dequeue_google_fonts_style' );
239 //* function tn_dequeue_google_fonts_style() {
240 //* wp_dequeue_style( 'genesis-sample-fonts' );
241 //* }
242 //* ALTERNATIVE TO REMOVE GOOGLE FONTS
243 add_action( 'wp_enqueue_scripts', function () {
244 $appearance = genesis_get_config( 'appearance' );
245
246 wp_dequeue_style(
247 genesis_get_theme_handle() . '-fonts',
248 $appearance['fonts-url'],
249 array(),
250 genesis_get_theme_version()
251 );
252
253 }, 20 );Thanks!
inisheer
ParticipantHi thanks for your reply. Actually I did at following code to make after entry appear on pages:
// Add support for after entry widget
add_theme_support( 'genesis-after-entry-widget-area' );// Remove after entry widget
remove_action( 'genesis_after_entry', 'genesis_after_entry_widget_area' );// Add after entry widget to posts and pages
add_action( 'genesis_after_entry', 'amethyst_after_entry', 9 );
function amethyst_after_entry() {if ( ! is_singular( array( 'page' )) )
return;genesis_widget_area( 'after-entry', array(
'before' => '<div class="after-entry widget-area">',
'after' => '</div>',
) );}
I had had "post" in the array which meant I was getting both bottom widget and the after entry widget on posts. Seems to be working now. I need it on pages for my affiliate offers.
Thanks!
Bobinisheer
ParticipantOk that worked. Thanks!
inisheer
ParticipantOK that seems to get it working on the posts, as at bottom as here:
https://collegedegreecomplete.com/exactly-who-do-you-contact-if-you-want-to-transfer-into-a-college/
But not on pages as here:
https://collegedegreecomplete.com/accelerated-master-degrees-online-a-unique-solution-for-adult-learners/I'm not sure if we'll be able to accomplish what I want really want because placing the offer widget that requires that script in the after entry widget is my ultimate goal, but maybe we can worry about that if we can first get the widget working on pages.
Thanks!
Bobinisheer
ParticipantOK so before I spend $99 on this - can you tell me with confidence that the pro version of this is gonna make a real difference in the speed of my site. When a free version is ineffective I'm always a little worried about throwing more money at it.
inisheer
ParticipantHold it - it's he plugin w3 total cache. Do you have an alternative to that you can recommend for minifying scripts?
inisheer
ParticipantWell no but the only real customizations I have done are appearance tweaks in custom css or in theme editor style.css.
FYI I just updated my other site to newer lifestyle pro version and now that site has the same problem with responsive menu collegedegreecomplete.cominisheer
ParticipantHi I have followed instructions and installed updated lifestyle pro, and after a few tweaks the site seems good. The only problem is that an issue I had previously has returned. On a phone, the responsive menu shows in the "open" position showing all sub links. I have disabled all plugins to no effect, except for one: Disabling w3 total cache makes the responsive menu look even worse on a phone - both the hamburger for the reponsive menu AND the sub links show. Not sure what to do. If you look at the site now on a phone you'll see just the sublinks on the responsive menu showing as I have re-activated w3 total cache.
https://www.successdegrees.com/inisheer
ParticipantWell it's all customized via a css file in the child theme. If I keep that should I be OK? I didn't really edit any of the genesis files.
So is it a mistake to use lifestyle pro? It's a little irksome to me that genesis recommends this as a child theme and then doesn't keep up with updates.
inisheer
ParticipantThe most recent lifestyle per version I see on Studio Press is 3.2.4 last updated in June of 2017. Should I update to that? Doesn't seem like a very recent iteration.
inisheer
ParticipantI did deactivate Autoptimize previously and it made no difference. Disabled most of the other plugins as well. But I'm not clear on what you mean by perform a plugin conflict / sorry.
I have disabled Autoptimize and I believe I have cleared the cache. Want to take a look?
Thanksinisheer
ParticipantWell, I kind of got it working by adding a "display: none;" to my phone size @media querie, and adding a new querie at 960px where I have the slick nav menu popping up. I think the plugin was generating a display: none instruction at smaller sizes but it must have been getting overridden by something in genesis. I really haven't done a whole lot of customization on this site.
Not a real elegant solution but it's working.
Thanks
Bobinisheer
ParticipantThanks for advice I'm almost there. I actually put this question into the support forum for Slick Nav plugin but I'll also put it over to you in case you have any thoughts:
dev.korovinmd.com
I’m getting odd behavior. In Slick Nav settings if I put as class to be replaced on mobile devices: #genesis-mobile-nav-primary
Slick Nav Menu appears properly but the original Genesis Mobile Menu is still there. I have left site on this setting so you can see.
If I put as class to be replaced: #genesis-nav-primary
Then I simply get neither Genesis Menus nor Slick Nav menu appearing on small devices.I’ve tried disabling a few plugins – no change thus far. Any thoughts?
Thanks!inisheer
ParticipantI have a problem which is a variation on the one above I believe.
The site is in a subfolder so it will generate security warning when you click on it - but there's nothing malicious there. Site is dev.korovinmd.com
Built on genesis framework and genesis sample theme. There are only limited css changes made for style to the downloaded themes.Problem is that on a phone, the hamburger for responsive menu appears as it should. But on click it reveals a list of all main menu items AND all sub menu items. In addition, if you touch on a main menu item you are taken to appropriate page, but if you touch on a sub menu item it simply dissappears.
I have tried solution to activate responsive menu outline here https://gist.github.com/mjsdiaz/9605372
and it makes no difference. Help! I need to give this site to a client.
BobNovember 30, 2018 at 9:33 am in reply to: Site name is being added to title in Google results, which is cutting off title #224734inisheer
ParticipantIt is unchecked - but the site title is still being added
November 29, 2018 at 4:54 pm in reply to: Site name is being added to title in Google results, which is cutting off title #224725inisheer
ParticipantI don't have any SEO plugin active on the site - used Yoast for awhile but deactivated it some time ago. I tried to figure out how to fix this with Genesis SEO settings but couldn't understand where to make the adjustment.
Thanks -
AuthorPosts