WebmistressM
Forum Replies Created
-
Okay. I cant say I know what I did but maybe the problem has solved itself.
Forum: Plugins
In reply to: [NSFW] [Gmedia Photo Gallery] Cannot Add New Tags to GmediaThank you for helping me troubleshoot this issue. I was able to run the following queries for my database and that seems to have allowed me to add Gmedia tags again. Thank you for checking in with me to make sure this wasnt something related to a Gmedia update.
Forum: Plugins
In reply to: [NSFW] [Gmedia Photo Gallery] Cannot Add New Tags to GmediaHere is the error that came up:
WordPress database error: [Duplicate entry '0' for key 'PRIMARY']
INSERT INTOwgm5_gmedia_term(name,taxonomy,description,global,status,count) VALUES ('test', 'gmedia_tag', '', '0', 'publish', 0)I remember coming across this error once (long ago, with a completely different website, use case and plugin that was involved in the issue). So I checked to see if there was any auto-increment problem with that table
- This reply was modified 3 months, 3 weeks ago by WebmistressM.
Forum: Plugins
In reply to: [NSFW] [Gmedia Photo Gallery] Cannot Add New Tags to GmediaWordPress version: 6.9.1
PHP Version: 8.4
Exact error message: Could not insert term into the database (see: https://pasteboard.co/Gv0KYxUIFN8C.jpg)
Issue happens in: Media Editing Screen, Tags Screen, Edit screen (post upload)
Note that the above error “Could not insert item into the database” only appears on the Tags screen. When I reproduce the issue at the Media Editing Screen, I get no error. I just notice that the new tag didnt get added to the image when I go to edit it again. The tags I have added of existing tags *are* there but the new tag is not.
I did try to disable plugins and clear cache. The problem persists.
Can confirm that the latest WordPress update has fixed my issue. Thank you for looking into this.
Thank you, that would be appreciated to make that consideration.
Would it be safe to say that, adding on my Google fonts* into my child theme just by simple CSS calls and loading it in functions.php? (Reference to what I mean in detail, covered in this older tutorial: https://wpsmackdown.com/google-fonts-wordpress/#google-font-face)
* whether self-hosted or hosted with Google. I dont mind self-hosting the fonts
Forum: Fixing WordPress
In reply to: Custom Content Types on Queue: Building an Order Notification System@jdembowski No problem. Didnt mean to double post. Form error
Hello,
I ran into this as well where sort order was not taking. I would go into Sort Gallery and make changes in the order. When I pressed save and the screen refreshed, the order went back to the way it was before I changed it. No matter what, I could not get this to take.
At first I thought maybe it was a problem with NextGEN itself. However, when I disabled NEXTCellent Gallery and tried to change the sort order with NEXTGen enabled, the issues of sort order did not present itself any longer. So, I began a search on NextCellent to see if it was the culprit. Sure enough…
https://ww.wp.xz.cn/support/topic/sort-function-is-missing
If you go down and view niknetniko’s responses, you will find that Alex Rabe (the developer of NextCellent) has issued a fix for this. Thank goodness!
M. Watson
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] nggtags gallery shortcode not workingThanks niknetniko,
Your fix solves my problem completely. I was pulling out my hair wondering what was wrong with my site.
Forum: Plugins
In reply to: [Dynamic Widgets] widget visible ONLY in mobileOop, spoke too soon. With the current release of 1.5.7.2, Im still finding that there is no way to restrict a widget’s display between tablets and smartphones.
In the device setting (for my slideshow widget), I can only check these boxes.
[ ] Desktop
[ ] MobileJust like WordPress’ wp_is_mobile function, it defines mobile device as any sort of touch device. So, Im still unable to specifically target smartphones as the one to hide this widget but allow tablets to still use it.
Is the next rendition of your beta able to differentiate tablets from smartphones? Is this even possible?
Sadly, none of the suggestions above work for me. Im not having the issues (others here have described) regarding responsiveness in mobile view. However, I am having the issues when it comes to centering the images that appear in the slideshow, due to some images being landscape and others being portrait.
Firebug did allow me to test if I could add margin-left: auto and margin-right auto to the inline css its pulling out. However, I have no clue how/where I would add that in. The jquery that niknetniko gave didnt seem to have any effect.
Here is what I get inline on the slideshow, and where I can add the margin auto declarations in Firebug to get the centering I am seeking.
‘element {
height: 155px;
position: absolute;
z-index: 6;
top: 0px;
left: 0px;
display: none;
width: 116px;
opacity: 0;’Forum: Plugins
In reply to: [Dynamic Widgets] widget visible ONLY in mobileDefinitely looking to create a “replacement” widget that only shows up in mobile sites. The replacement it will do is for a widget that I have hidden from mobile view because it uses alot of data and therefore would be inconsiderate for those accessing via their mobile provider’s data plan.
The 1.5.7.2 version seems to do the trick but definitely dont want to roll that out on a live site. Any ETA on when the “mobile only” changes might be released officially?
Forum: Plugins
In reply to: [WooCommerce] Woo Helper page missingI have run into this as well, starting maybe yesterday or the day before. Error message is the same:
There seems to be an error reaching the WooThemes API at this time. Please try again later. Should this error persist, please log a ticket in our help desk.
I am gathering that 5.6 came out and my current WooTheme is 5.5.3. Not sure if I should wait it out or try and upgrade manually
Forum: Plugins
In reply to: [WooCommerce] UPC or EAN Codes in WooCommerceI actually would like to know this as well. I see a place to put in a SKU (and it can be disabled/enabled within WooCommerce’s settings).However, there is no place to put a UPC code. Any idea if we can do this beyond using core’s custom fields?
Forum: Plugins
In reply to: Summarize Posts (CCTM)Thanks so much. I had originally thought of doing things this way but didnt know if the summarize posts (which has seen significant improvement since when I first started this project) was the more updated solution. I guess it was inevitable that I would do things through get_posts in a template file because I do need to filter the list a bit. Basically Im going to need the equivalent of an if/then/else statement so that the get posts filters out any of my custom post entries which have either of the 3 checkboxes (from a multi select custom field) checked.