Anita Hill
Forum Replies Created
-
Thank you. We do wish it to keep it working for upcoming posts, so I won’t change that setting.
Forum: Plugins
In reply to: [WooCommerce Square] Authorization mode, changing amountsThank you.
Thank you.
Forum: Plugins
In reply to: [WooCommerce Square] Authorization mode, changing amountsIs it even possible to edit an amount after it has been authorized but before capturing, in any payment gateway?
Forum: Plugins
In reply to: [Advanced Random Posts Widget] Is there any way to set the refresh rate?Thank you! Luckily it is only a member listing of around 100, so maybe it can wait until you have the time! I am glad you have it planned.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Creating live links to websites@jonesyb84, you might give this a go:
(In my case, the link was invisible when it was live, so I did an Inspect Element to see if it showed in the code, and it did. Turns out there was some css making it not display, so I put in this css in the customizer, and it now shows up.)
.simcal-tooltip-content a {
display: inline;
}That is after making a live link in Google Calendar.
- This reply was modified 6 years, 4 months ago by Anita Hill. Reason: more clarity
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Creating live links to websitesYeah, I am wondering, too. Is it Simple Calendar or is it Google Calendar that makes a link invisible, and how can we fix it? All I can seem to do is to put in an unclickable link.
Forum: Plugins
In reply to: [WooCommerce] Single Product Image Caption@prkirby: Did you ever find a solution?
I just left my template files in the child theme in place, though I get the notice constantly that they might not work. So far they DO work.
Forum: Plugins
In reply to: [WP Nice Topbar] Covering Top Menu BarOk, I did use the above in conjunction with several other solutions, and came up with this (which works):
In the css, I put the following in my child theme; note the tc-header stuff is the class given my header in my theme, Customizr. Anyone else would use the class given their header:
.wpnt-topbar-box { position: inherit; } .tc-header.clearfix.row-fluid.tc-tagline-off.tc-title-logo-on.tc-shrink-on.tc-menu-on.logo-left.tc-second-menu-in-sn-before-when-mobile { margin-top: 32px !important; }
In child theme functions.php:
add_action('wp_head', 'add_css_head'); function add_css_head() { if ( is_user_logged_in() ) { ?> <style> #wpnt_elem_topbar { top: 32px !important; z-index: 10 !important; } </style> <?php } else { ?> <style> #wpnt_elem_topbar { top: 0; z-index: 100000 !important; } </style> <?php } }
The css was from this current thread and this one. The function came from this post on WordPress Stackexchange.
It’s possible my particular problem was unique to the theme I was using, Customizr.
- This reply was modified 7 years, 5 months ago by Anita Hill.
Forum: Plugins
In reply to: [WP Nice Topbar] Covering Top Menu BarOk, I did use the above in conjunction with several other solutions, and came up with this (which works):
In the css, I put the following in my child theme; note the tc-header stuff is the class given my header in my theme, Customizr. Anyone else would use the class given their header:
.wpnt-topbar-box { position: inherit; }
.tc-header.clearfix.row-fluid.tc-tagline-off.tc-title-logo-on.tc-shrink-on.tc-menu-on.logo-left.tc-second-menu-in-sn-before-when-mobile { margin-top: 32px !important; }In child theme functions.php:
add_action('wp_head', 'add_css_head'); function add_css_head() { if ( is_user_logged_in() ) { ?> <style> #wpnt_elem_topbar { top: 32px !important; } </style> <?php } else { ?> <style> #wpnt_elem_topbar { top: 0; } </style> <?php } }
The css was from this current thread and this one. The function came from this post on WordPress Stackexchange.
It’s possible my particular problem was unique to the theme I was using, Customizr.
- This reply was modified 7 years, 5 months ago by Anita Hill.
- This reply was modified 7 years, 5 months ago by Anita Hill.
- This reply was modified 7 years, 5 months ago by Anita Hill.
Forum: Plugins
In reply to: [WP Nice Topbar] Covering Top Menu BarThis didn’t work for me. The top of the page is covered down about 32px for non-admins, and for admins the top of the page is NOT covered, but the admin toolbar is covered. The plugin seems great, but if I can’t get that fixed I’ll have to find another solution.
Forum: Plugins
In reply to: [WooCommerce] Single Product Image CaptionI would like an answer to this as well. I need to show photo credits, and it is pretty important that they show up.
Forum: Plugins
In reply to: [PayPal Shopping Cart] Security header is not valid errorI’m having the same problem. Re-entered the credentials, removed all sandbox credentials, and it is still giving me the same error.
Thank you, @coffeeasfuel. I had made several extra categories and worked it that way, but this would be much better!
This is great, I am very thankful for it. Would there be a way to make it choose products in two or more categories at once, or even a category and a tag? I need to do a bit of organization.
For instance, I have a sale, so I am choosing products in that sale category, but with over 80 products I need to break them into subcategories, such as “sale” and “trees”, “sale” and “shrubs”. For now I can make my categories to be like “sale-trees”, but it would be helpful to know a way to get two or more categories so that I could easily organize a list.