ALDesigner
Forum Replies Created
-
As of today, I too have encountered this issue. Any insight would be greatly appreciated.
Perhaps the issue is conflicting or older versions of jQuery?
Forum: Plugins
In reply to: [Yoast SEO] Hyphen being inserted after page titlesThank you, that helped!
It is blog[dot]oconnormortuary[dot]com.
Thank you.
Forum: Themes and Templates
In reply to: [Lawyeria Lite] I keep losing my styles and images!That was in fact the cause. One of the other 2 users, two of which are admins and one is an editor, did an “update all” for the site using our centralized WP manager. It updated all plugins and themes with one click and they failed to check if that compromised our customization.
Forum: Plugins
In reply to: [JP Sharing] Moving blog to another server looses likes count?Any new info regarding this? I always assumed it pulled them from an API from Facebook/Google/Twitter/etc. But I switched from Shareaholic to this and lost all of my counts.
I was able to get it to work by renaming the custom taxonomy. I was unaware that having a “-” in the name would interfere with using it as an argument within
wp_list_categories()
.Just used this just to see the output:
<?php $taxonomy_names = get_object_taxonomies( 'post' ); print_r( $taxonomy_names); ?>
Got this:
Array ( [0] => category [1] => post_tag [2] => post_format )
Then tried:
<?php $taxonomy_names = get_object_taxonomies( 'awards' ); print_r( $taxonomy_names); ?>
Got this:
Array ( )
Awards is the custom taxonomy that I created that the test custom posts are associated with.
At present, yes. I have only created one custom taxonomy as of yet, and I’ve assigned it to all of my test posts.
I disabled all of my other plugins and the problem resolved. I will have to systematically enable them and find the culprit.
Thanks.
What modification to the above code was needed?
Forum: Plugins
In reply to: [Custom Post Type UI] Comments Closed on Custom Post TypesYes, but it was again an oversight on my part. As explained here: https://screencast.com/t/u5lCYxOQR5zJ
Forum: Plugins
In reply to: [Custom Post Type UI] Comments Closed on Custom Post TypesUpdate: After disabling comments in the Settings > Discussion page and then enabling them again, the option now appears on my custom post types. However, with comments enabled, the actual post body editor field is entirely gone!
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Adding new fieldsI’ve managed to add some new fields.
My two issues now:
– Despite duplicating everything I see about existing fields, my new fields are showing up on the donation record as blank. Seem to be missing something. I added what I felt were all necessary fields in dgx-donate-admin.php, dgx-donate-paypalstd-ipn.php and dgx-donate.php– Can’t figure out how to include these new fields in the CSV export.
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Adding new fieldsIs the Data just serialized and outputted? If so, could we just go into the code and code in more fields? Or does the form-processing script need to be heavily modified to accept those new fields? I too am in need of adding specific fields due to legal guidelines.