Deviant Media LLC
@abretado1985 on WordPress.org
- Member Since: January 22nd, 2019
- Location: Remote
- Website: www.deviant.media
- Job Title: Owner / Web Developer
- Employer: Deviant Media LLC
Bio
Contributions
-
Posted a reply to How to redirect from non Https to www, on the site WordPress.org Forums:
Place this in your .htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. [NC,OR] RewriteCond %{HTTPS} !=on… -
Posted a reply to Vimeo Block – No iFrame title, on the site WordPress.org Forums:
See if this work. It would be added to your functions.php file. /** * Add… -
Posted a reply to Add a front end react page to an existing wordpresswebsite, on the site WordPress.org Forums:
See if these steps work: Create your React app: Start by building your React application… -
Posted a reply to Can’t publish posts, on the site WordPress.org Forums:
Are you facing the same issue with Pages? Have you tried repairing your database? How… -
Posted a reply to Installing WordPress to root *and* subdirectory, on the site WordPress.org Forums:
Yes, it is definitely possible to install a second instance of WordPress in a subdirectory… -
Posted a reply to Website Not Showing Properly, on the site WordPress.org Forums:
Looks like you been having issues multiple times and that theme looks nothing like the… -
Posted a reply to Downloads Attachment Plugin Alternative?, on the site WordPress.org Forums:
I am not aware of a similar plugin, but hopefully the code below can work… -
Posted a reply to Downloads Attachment Plugin Alternative?, on the site WordPress.org Forums:
Can you elaborate more on what the plugin did or what you want it to… -
Posted a reply to Upload file in the registry and display it on the user page, on the site WordPress.org Forums:
See if this plugin helps: RegistrationMagic – Custom Registration Forms, User Registration, Payment, and User… -
Posted a reply to Post linking problems, on the site WordPress.org Forums:
If the link is in the post content, I'm thinking that maybe you can run… -
Posted a reply to add new menu item to appearance Menus page, on the site WordPress.org Forums:
Did you add it to your functions.php file? It should have created a new meta… -
Posted a reply to PHP Fatal error – class-wp-site-health.php, on the site WordPress.org Forums:
Try Settings > Permalinks and clicking the "Save Changes" button a few times. Do you… -
Posted a reply to Mobile Home Header Menu Issue, on the site WordPress.org Forums:
Do you have a Cache Plugin installed? -
Posted a reply to Mobile Home Header Menu Issue, on the site WordPress.org Forums:
Seeing how their theme demo works correctly, I think you might have a conflict with… -
Posted a reply to Wrong Login Page after logging out of admin area, on the site WordPress.org Forums:
Provided that the Site Address and WordPress Address fields are correctly set for each website,… -
Posted a reply to add new menu item to appearance Menus page, on the site WordPress.org Forums:
This adds a custom meta box: if ( !class_exists('DM_Custom_MetaBox')) { class DM_Custom_MetaBox { public function… -
Posted a reply to Can I add an Aria-Label to an A Tag based on Class?, on the site WordPress.org Forums:
Yes, you can add an aria-label to the mobile menu toggle using JavaScript or jQuery… -
Posted a reply to table of contents Issues, on the site WordPress.org Forums:
There is a premium plugin you can purchase called Fixed TOC on codecanyon that you… -
Posted a reply to the_post_thumbnail with tag alt or title, on the site WordPress.org Forums:
Where are you adding this code? This code should help...or point you in the right… -
Posted a reply to Checking the activity of subsites, on the site WordPress.org Forums:
Here is a custom starter plugin that shows CPU, RAM, WordPress Installation size, and Last… -
Posted a reply to Help how to remove double quotes unicode values and other unicode values?, on the site WordPress.org Forums:
See if this works: <meta name="description" content="<?php $description_raw = get_field('name_customfield'); $description_html = html_entity_decode($description_raw); $description_stripped =… -
Posted a reply to Looking for Specific Type of YouTube Plugin, on the site WordPress.org Forums:
I tested the plugin Automatic YouTube® Video PostsIt created the posts based on my YT… -
Posted a reply to Custom CSS ignored after 6.2 upgrade, on the site WordPress.org Forums:
It's possible that the update to WordPress 6.2 introduced changes that are causing conflicts with… -
Posted a reply to WordPress and add_rewrite_rule(): Assistance needed, on the site WordPress.org Forums:
It seems that the regular expression in your add_rewrite_tag function is causing the issue. The… -
Posted a reply to posts button is missing for certain admin’s, on the site WordPress.org Forums:
Do you have a plugin that affects roles/users in terms of what admin menu items… -
Posted a reply to WordPress Hardening – Securing wp-includes & wp-admin, on the site WordPress.org Forums:
It's possible that this code could cause certain plugins to not work properly if they… -
Posted a reply to Html in custom atribute, on the site WordPress.org Forums:
<main class="relative h-full w-full transition-width flex flex-col overflow-hidden items-stretch flex-1">The reason why the HTML code… -
Posted a reply to Navigation menu not showing, on the site WordPress.org Forums:
Looks like the Menu is working as intended by being responsive to different screen sizes.… -
Posted a reply to wrong image in link preview, on the site WordPress.org Forums:
To address the problem, you have the option of installing either RankMath SEO or YoastSEO.… -
Posted a reply to WordPress Gallery not linking to file, on the site WordPress.org Forums:
Here is a simpler way (I think), using the code you provided as reference, add… -
Posted a reply to WordPress Gallery not linking to file, on the site WordPress.org Forums:
Real quick, are you using a shortcode for the gallery such as ? If so,… -
Posted a reply to WordPress Gallery not linking to file, on the site WordPress.org Forums:
Hello, Try this: -
Posted a reply to Multisite Subdirectory help, on the site WordPress.org Forums:
To create your multisite, start by setting it up on your main domain. Then, add… -
Posted a reply to How to make a Theme Updatable, on the site WordPress.org Forums:
I take it you have a good understanding of coding since you develop themes, so… -
Posted a reply to Redirect to different pages based on product, on the site WordPress.org Forums:
For multiple product ID's, like @bcworkz mentioned, you can do an array. Here is the… -
Posted a reply to Redirect to different pages based on product, on the site WordPress.org Forums:
Try this: add_action( 'woocommerce_thankyou', 'bbloomer_redirectcustom' ); function bbloomer_redirectcustom( $order_id ) { $order = wc_get_order( $order_id… -
Posted a reply to Hiding tax on cart page (or editing), on the site WordPress.org Forums:
Without providing a URL, the following should hide it in the cart page: .woocommerce-cart .tax-rate… -
Posted a reply to make admin menu for a plugin, on the site WordPress.org Forums:
Try this: add_action('admin_menu', 'rl_add_pages'); function rl_add_pages() { add_submenu_page('users.php', 'Roles', 'Roles', 'manage_options', 'disp_role', 'disp_role_func'); add_submenu_page('users.php', 'Add… -
Posted a reply to Noindex tag by search console, on the site WordPress.org Forums:
If I understand correctly, you are wanting a solution for the noindex on /2 /3… -
Posted a reply to Test for Category in functions.php (MC4WP), on the site WordPress.org Forums:
If you initial code works for all posts and you wan to limit it to… -
Posted a reply to Rename wp-content in WordPress, on the site WordPress.org Forums:
or add the following to the wp-config file, just update the wp-content portion to whatever… -
Posted a reply to Rename wp-content in WordPress, on the site WordPress.org Forums:
See if you can now change the upload path in settings: Login to your WordPress… -
Posted a reply to Ghost email in “to:” Field – Using Contact Form 7, on the site WordPress.org Forums:
It looks like the issue might be caused by the Reply-To header in the email.… -
Posted a reply to Query Loop Block, taxQuery and counting found_posts, on the site WordPress.org Forums:
maybe this bit of code will get you to the finish line: <!-- wp:query {"query":{"post_type":"post","posts_per_page":-1,"tax_query":{"relation":"AND","0":{"taxonomy":"category","field":"term_id","terms":[22,16]}}},"displayLayout":{"type":"list"},"align":"wide"}… -
Posted a reply to Test for Category in functions.php (MC4WP), on the site WordPress.org Forums:
okay, break it down barney style for me in terms of what you are trying… -
Posted a reply to Test for Category in functions.php (MC4WP), on the site WordPress.org Forums:
Try this: add_filter( 'mc4wp_integration_wp-comment-form_subscriber_data', 'myprefix_woocommerce_subscriber_data' ); function myprefix_woocommerce_subscriber_data( MC4WP_MailChimp_Subscriber $subscriber ) { $categories = get_the_category();… -
Posted a reply to Entry-footer moving to left of entry-content in posts not pages, on the site WordPress.org Forums:
Sorry, try this as I forgot the curly brackets for the media query: @media screen… -
Posted a reply to Link to draft posts disappeared from ‘Posts’ – no option to access draft posts, on the site WordPress.org Forums:
Have you tried deactivating plugins one-by-one to see if it's a plugin issue?For now, just… -
Posted a reply to PHP 8.1 and WordPress 6.1.1, on the site WordPress.org Forums:
that line of code is not default on the wp-config file. Someone (or maybe a…