kellyalan
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Register Now button for widgetIf you have the URLs for your register and lost password pages, put those in the WP-Members settings.
When you’re logged out, the Register and Forgot PW option will be there – it disappears when you are logged in
Forum: Plugins
In reply to: [Plugins] Revolution Slider // Backgroundwe have it resolved / thanks
I think that’s how I fixed it too….(can you tell I’ve forgotten what I did – lol)
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Register Now button for widgetnvm – got it working
If you have set up a members-area and register page using the shortcodes for these pages, you can enter the URL for each in the plugin’s options panel. The register page URL will cause a register link to be included in all login forms. The members-area page URL will cause a forgot password link to be included.
fixed!
Forum: Themes and Templates
In reply to: [The Bootstrap] Comments/WooCommerce reviews conflict?Hi – slightly off topic but did you have the problem of the sidebar moving to the bottom of the page when viewing products? If so, how did you fix it?
I’ve gone to this WooCommerce link but don’t know what the theme-wrapper-start and theme-wrapper-end should be.
Forum: Fixing WordPress
In reply to: Parent / MenuThanks // we’ve got it all working =)
Forum: Fixing WordPress
In reply to: pre_get_posts // categoryas of now, it’s coded as:
$paginar=1; $page = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'paged' => $page, 'post_status' => 'publish', 'order_by' => 'date', ); query_posts($args); while (have_posts()) { the_post(); $day = get_the_time('F j, Y'); $cate = get_the_category(get_the_id()); foreach($cate as $k){ }
output is: https://www.absolutept.com/category/electric-stimulation-2/
it’s pulling posts that are in categories that aren’t in the Electric Stimulation category and it’s not stopping once you’re at the last post(select page 4 – goes to a blank page)
We have talked with the theme creator but not much luck – seems like there should be a way to recode the child theme function.php and the category.php with pre_get_posts code instead of query_posts
Forum: Plugins
In reply to: [Easy Image Gallery] Lightbox Not WorkingI can’t believe I never got back to this ..
how did you locate the Javascript error / I’m looking in my FTP files and can’t locate a file called gprofiles.js
Thx
Forum: Fixing WordPress
In reply to: Categories Questionthanks — I added a functionality plugin and dropped that code in there but no luck
I’m a bit afraid to touch the theme’s functions file…
next step is to ask the theme’s creators
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Sharing Buttons / HorizontalI didn’t overwrite Jetpack but this is what I put in my Custom CSS plugin
/* sharing buttons made inline */ .sd-content ul li { display: inline !important; }
and it worked — that shouldn’t be overwritten right?
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Sharing Buttons / Horizontalnevermind — success!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Sharing Buttons / Horizontalremoving the
!important
caused other lists in our blog to go inline so somehow I have to code around thisis there a way to go into Jetpack’s CSS and tell it not to pay attention to the
!important
?or – is this for the theme’s developers to help me with?
thanks — I’ll try there next
Forum: Fixing WordPress
In reply to: Categories / Listed with parentheseswell there you go =) / thanks – love easy answers