Deviant Media LLC
@abretado1985 on WordPress.org
Bio
Contributions
- Member Since: January 22nd, 2019
- Location: Remote
- Website: www.deviant.media
- Job Title: Owner / Web Developer
- Employer: Deviant Media LLC
-
Posted a reply to API not updating article featured image returning 200, on the site WordPress.org Forums:
I see that you have debug logging for success but not error. Have you tried… -
Posted a reply to Homepage Change Coding Problem, on the site WordPress.org Forums:
By gray box are you talking about the dark grey top header bar? Or the… -
Posted a reply to Expand all images on click, on the site WordPress.org Forums:
Are you looking for something like a lightbox? If so, here is a simple plugin… -
Posted a reply to How to Restrict Editor Access on ONLY Homepage, on the site WordPress.org Forums:
Add the following to your theme functions.php file: function restrict_editor_from_homepage() { if (!is_admin()) { return;… -
Posted a reply to How to add a custom link on admin dashboard ?, on the site WordPress.org Forums:
@dscp8g Try this: add_action('admin_menu', 'custom_menu'); function custom_menu() { add_menu_page( 'Page Title', // The text to… -
Posted a reply to How to add a custom link on admin dashboard ?, on the site WordPress.org Forums:
To add a custom menu to the admin bar do the following and adjust as… -
Posted a reply to Rest Api failed to publish 15k character word post content, on the site WordPress.org Forums:
Here are a few areas to investigate: PHP Configuration Limits: Check your server's PHP configuration,… -
Posted a reply to Posts have multiple URL, on the site WordPress.org Forums:
Thank for the additional information and hopefully I understood everything correctly. Since you are using… -
Posted a reply to Drop down list in page, on the site WordPress.org Forums:
You would use gravity for the dropdown and to build out the questions. -
Posted a reply to Posts have multiple URL, on the site WordPress.org Forums:
You would add the code to your functions.php file. Change the "news" slug to match… -
Posted a reply to Posts have multiple URL, on the site WordPress.org Forums:
Here's how you can adjust the function to specifically redirect to the "News" category URL… -
Posted a reply to Drop down list in page, on the site WordPress.org Forums:
One way I would do this is to use GravityForms and populate the users on… -
Posted a reply to This site can’t provide a secure connection, on the site WordPress.org Forums:
Your website loads for me on Firefox if I go to http://ladderlead.unaux.com/ but if you… -
Posted a reply to How to add page atributtes to a post in a certain category only?, on the site WordPress.org Forums:
A workaround involves using the admin_init hook, combined with additional checks when rendering the post… -
Posted a reply to Custom Post Type Taxonomy Archive, on the site WordPress.org Forums:
Your issue with the WordPress block theme not correctly displaying the custom category archive page… -
Posted a reply to I am encountering challenges in implementing necessary automations., on the site WordPress.org Forums:
Seems like you are missing some code based on what you outlined. See if adding… -
Posted a reply to How to Add Basic JavaScript Form Validation Prior to Processing a HTML Form, on the site WordPress.org Forums:
First, make sure your HTML form has the necessary fields and a submit button. For… -
Posted a reply to Can’t get access to edit one particular post, on the site WordPress.org Forums:
Seeing how big your post is...it could be a WP Memory Limit issue. You can… -
Posted a reply to category as part of the slug/url only for specific categories, on the site WordPress.org Forums:
To achieve your goal of including the category in the URL slug only for specific… -
Posted a reply to WP_Query sort by multiple custom fields, on the site WordPress.org Forums:
Maybe I am not understanding your request. You want to show events in ASC followed… -
Posted a reply to How to Create different image folder for different forms?, on the site WordPress.org Forums:
I do not know of a plugin that currently does this. A custom plugin would… -
Posted a reply to WP_Query sort by multiple custom fields, on the site WordPress.org Forums:
Try this: add_action('pre_get_posts', function ($query) { if (!is_admin() and $query->is_archive('news') and $query->is_main_query()) { $meta_query =… -
Posted a reply to Create a survey and generate a pdf report of the results, on the site WordPress.org Forums:
You can use WooCommerce for payment and GravityForms with Survey Addon + Gravity PDF.Here is… -
Posted a reply to Stopping Form Autofill without Plugin, on the site WordPress.org Forums:
The issue you're facing with browser autofill in WooCommerce can indeed be a bit tricky,… -
Posted a reply to How to validate url query var?, on the site WordPress.org Forums:
Hook Into pre_get_posts Action: The pre_get_posts action hook allows you to alter the query before… -
Posted a reply to Help me: “Parse error: syntax error, unexpected ‘}\'”, on the site WordPress.org Forums:
What plugin did you install? Can you share line 247 from your functions.php file? -
Posted a reply to I deleted all data off my website and it’s slower than ever before, on the site WordPress.org Forums:
Your database is probably all fragmented. Have you optimized your database since you deleted a… -
Posted a reply to Slider Hyperlink, on the site WordPress.org Forums:
See if adding this code to your functions.php file helps: function add_slider_clickable_link() { echo "… -
Posted a reply to media upload API, on the site WordPress.org Forums:
Here are a few potential causes and solutions: File Permissions: Check the file permissions on… -
Posted a reply to plugin to create dynamic generated pdf printables, on the site WordPress.org Forums:
Here's an example of how you could create a simple PDF with layers using PHP… -
Posted a reply to Problem with Get request, on the site WordPress.org Forums:
The code you've provided seems to define a custom REST API endpoint in WordPress. The… -
Posted a reply to Looking for a way to post a banner under each post of one category, on the site WordPress.org Forums:
One way, without plugin, is to update your theme file single.php and use conditional code:… -
Posted a reply to How to restrict access to certain page, on the site WordPress.org Forums:
Replace the previous code with the one below. It should get the current URL as… -
Posted a reply to How to restrict access to certain page, on the site WordPress.org Forums:
Give this a try. Add to your functions.php file or create a custom plugin. Make… -
Posted a reply to How to restrict access to certain page, on the site WordPress.org Forums:
In the WordPress dashboard, go to WooCommerce → Settings → Checkout. Untick the 'Enable guest… -
Posted a reply to Override Parent Function, on the site WordPress.org Forums:
Here are a few options you can test: Since you can't directly modify the parent… -
Posted a reply to Plugin uninstall.php not deleting taxonomy/catergory upon plugin deletion, on the site WordPress.org Forums:
@bcworkz A few weeks back, I received a grounding for redirecting a forum member to… -
Posted a reply to Internal links plugin, on the site WordPress.org Forums:
I believe YoastSEO does something similar when you are creating or editing a blog post… -
Posted a reply to bbpress Forum Display, on the site WordPress.org Forums:
@saip1540 check out https://wordpress.org/plugins/bbp-style-pack/ -
Posted a reply to Need advice from Plug-In Ninjas, on the site WordPress.org Forums:
Personally I don't think that having multiple plugins to achieve what you want is the… -
Posted a reply to WordPress and db encoding is wrong, displaying gibberish, on the site WordPress.org Forums:
Try the following: Change Character Encoding in Database and wp-config.php: To convert the character encoding… -
Posted a reply to Individual page per user, on the site WordPress.org Forums:
@frodo65 you'll need the private content extension: https://ultimatemember.com/extensions/ -
Posted a reply to How to change the checkbox color, on the site WordPress.org Forums:
Try adding this to Appearance > Customize, Additional CSS: .wcpa_wrap .wcpa_checkbox .wcpa_checkbox_custom { background-color:#ffffff; } -
Posted a reply to Individual page per user, on the site WordPress.org Forums:
There is a plugin that I use on one of my site that allows what… -
Posted a reply to Plugin uninstall.php not deleting taxonomy/catergory upon plugin deletion, on the site WordPress.org Forums:
I managed to get it working, but not sure if going directly into the database… -
Posted a reply to Adding a link in edit.php, on the site WordPress.org Forums:
You can add this to your functions.php file or you can make it into a… -
Created a topic, Plugin uninstall.php not deleting taxonomy/catergory upon plugin deletion, on the site WordPress.org Forums:
Hello, for the life of me I can't figure out why my un… -
Posted a reply to Site displaying fine in Edge, but issues with Chrome & Firefox, on the site WordPress.org Forums:
Looks like the issue is with your CSS class .et_pd_row inline affecting width and max-width. -
Posted a reply to Header Dropdown Options Unselectable, on the site WordPress.org Forums:
I, too, did not have any issues with your navigation dropdown. I tried on Firefox… -
Posted a reply to Subscriber login goes to profile, on the site WordPress.org Forums:
Option 1 - You can install a plugin like LoginWP which allows you to set…