burtons
Forum Replies Created
-
Forum: Plugins
In reply to: [Page View Count] The plugin counts even if I set increase = 0I am having the same issue.
Forum: Plugins
In reply to: [Medialist] CSS/Icons also not working for meThanks for the response. I will investigate further. Great plugin. Thank you!
Hello,
I am having the same issue as the OP. However, I don’t believe it is a redirect issue.
After an unsuccessful login attempt the url does not change and I get the following error message on a blank page.
{“success”:false,”data”:{“message”:”Error:<\/strong> The username robert1<\/strong> is not registered on this site. If you are unsure of your username, try your email address instead.”}}
After a successful login attempt, the same thing happens and I get the following message.
{“success”:true,”data”:{“message”:”\/adoption-portal\/bronson-67\/”}}
If I refresh the page after a successful login, then the page appears as it should with the user logged in.
I am not using any cache plugins.
The issue was on only one plugin’s admin page. Changing my rating to 5 stars.
The formatting doesn’t allow me to click any of those options. They appear stacked in the upper right of the screen, outside of the review notice.
I have the same question.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Duplicating field doesn’t get savedJust to report that I too regularly have this issue. I tried clearing the cache, which did not work.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] WooCommerce Product Option MissingI did not occur to me that you can only extend Product once, and simply need to add more fields to extend the functionality. It’s resolved now thanks to Jim True at Pods!
Thank you, Jim. I was able to sort it out after you pointed me in the right direction.
I used this code:add_action( 'woocommerce_after_single_product', 'display_pod_product_bottom', 30 ); function display_pod_product_bottom() { $product_page_bottom_pod = get_post_meta( get_the_ID(), 'product_page_bottom_pod', true ); echo $product_page_bottom_pod; }
Thank you Jory. That bit of information helps. I modified the code from something I found that was made for ACF. Interestingly it worked fine as long as I had ACF installed, but when I deleted ACF if stopped functioning. I am now trying to figure out what I can use instead of
get_field()
.Any further insights or solutions would still be greatly appreciated!
Thanks, Sidney