jayhill
Forum Replies Created
-
Forum: Plugins
In reply to: [WPC Pexels] How do you use this with Gutenberg?Not sure why they say this was tested up to 5.0.4 because there’s nothing for Pexels within the block editing experience. Should work if you install the Classic Editor plugin. I’ve been fiddling with a separate plugin that will allow the use of the Gutenberg editor and the Pexels API but its a work in progress.
Forum: Plugins
In reply to: [Better Font Awesome] [beta test] Missing icons in menusI don’t use the plugin but thank you @ajtruckle for letting me know the issue with the fa class name change in version 5. I’ve been wracking my brain trying to help a client fix the issue with his theme after he decided to use Font Awesome 5.X.
Internet high five for you sir!
Forum: Fixing WordPress
In reply to: Crazy PermissionsAdd the somesite user to the www group and that should work in theory.
Forum: Everything else WordPress
In reply to: Book about the core of WordPress?Most of the WordPress books that I’ve seen are fairly outdated. Your best bet to get into WordPress development is to read the specific handbooks and to experiment.
You can use WP CLI to scaffold a plugin, in that it sets up a lot of the core plugin files for you to be able to get a jump start on development.
WP CLI also has a scaffold feature for the _s (underscores theme) which is a Starter Theme from Auttomatic that provides a lot of the base code for you to work off of and begin styling.
As @necafasu said the theme and plugin developer handbooks will be your greatest asset.
I would recommend also looking into using PHP Code Sniffer and PHP Code Beautifier to help check that you’re following WordPress Coding Standards
Forum: Fixing WordPress
In reply to: catt.php is this malware?Most likely it is malware. I do not have a catt.php file in my sites with Woocommerce.
There was recently a security vulnerability that was patched in the latest version of Woocommerce. Be sure to update all of your plugins and themes to ensure that any known security vulnerabilities are patched.
Forum: Fixing WordPress
In reply to: Credit card payment pluginsHave you tried the Authorize.net payment gateway for Woocommerce extension? https://ww.wp.xz.cn/plugins/authorizenet-payment-gateway-for-woocommerce/
Forum: Fixing WordPress
In reply to: installed WP on localhost does not workDid you unzip the WordPress core files into the www directory? The standard WordPress core index.php does not have 37 lines in it.
What are the contents of the www\ directory?
Forum: Developing with WordPress
In reply to: Registering CPT’s 404’s Frontendpublic function rl_artist_init() { register_post_type( 'rl_artist', array( 'labels' => array( 'name' => __( 'Artists', 'rl_release' ), 'singular_name' => __( 'Artist', 'rl_release' ), 'all_items' => __( 'All Artists', 'rl_release' ), 'archives' => __( 'Artist Archives', 'rl_release' ), 'attributes' => __( 'Artist Attributes', 'rl_release' ), 'insert_into_item' => __( 'Insert into Artist', 'rl_release' ), 'uploaded_to_this_item' => __( 'Uploaded to this Artist', 'rl_release' ), 'featured_image' => _x( 'Featured Image', 'rl_artist', 'rl_release' ), 'set_featured_image' => _x( 'Set featured image', 'rl_artist', 'rl_release' ), 'remove_featured_image' => _x( 'Remove featured image', 'rl_artist', 'rl_release' ), 'use_featured_image' => _x( 'Use as featured image', 'rl_artist', 'rl_release' ), 'filter_items_list' => __( 'Filter Artists list', 'rl_release' ), 'items_list_navigation' => __( 'Artists list navigation', 'rl_release' ), 'items_list' => __( 'Artists list', 'rl_release' ), 'new_item' => __( 'New Artist', 'rl_release' ), 'add_new' => __( 'Add New', 'rl_release' ), 'add_new_item' => __( 'Add New Artist', 'rl_release' ), 'edit_item' => __( 'Edit Artist', 'rl_release' ), 'view_item' => __( 'View Artist', 'rl_release' ), 'view_items' => __( 'View Artists', 'rl_release' ), 'search_items' => __( 'Search Artists', 'rl_release' ), 'not_found' => __( 'No Artists found', 'rl_release' ), 'not_found_in_trash' => __( 'No Artists found in trash', 'rl_release' ), 'parent_item_colon' => __( 'Parent Artist:', 'rl_release' ), 'menu_name' => __( 'Artists', 'rl_release' ), ), 'public' => true, 'hierarchical' => false, 'show_ui' => true, 'show_in_nav_menus' => true, 'supports' => array( 'title', 'editor' ), 'has_archive' => true, 'rewrite' => array( 'slug' => '/artist/'), 'query_var' => true, 'menu_icon' => 'dashicons-businessman', 'show_in_rest' => true, 'rest_base' => 'rl_artist', 'rest_controller_class' => 'WP_REST_Posts_Controller', ) ); }Yeah the backend everything works great it’s just when trying to view the frontend. This is happening in my local vagrant but I’ve included a couple screenshots here and here.
Even with the new new post I still get a 404 for http://wpdevlife.test/artist/testing-again/
Forum: Reviews
In reply to: [Gutenberg] Needs backwards compatibility | Shouldn’t be a core featureUnfortunately the response that will come back will be to utilize the Classic Editor plugin. It’s going to be up to different theme and plugin developers to get their items 5.0 ready. There’s been a ton done to minimize any negative effects, and you should always check compatibilities first before upgrading to any major release branch.
Just my two cents on this whole matter.
Forum: Fixing WordPress
In reply to: Display users activity for frontendForum: Fixing WordPress
In reply to: Display users activity for frontendI searched some more for you and wasn’t able to turn up any currently maintained/active plugins that would achieve this functionality natively, however I imagine it wouldn’t take too much code wrangling within your theme to display the activity in the front-end by extending one of the above mentioned plugins.
Forum: Fixing WordPress
In reply to: Need help mobile siteHey there,
It appears there’s an issue with your theme as when I go to your site I’m getting
Warning: Cannot modify header information - headers already sent by (output started at /home4/cyihats/public_html/wp-content/themes/custom/functions.php:697) in /home4/cyihats/public_html/wp-includes/pluggable.php on line 1216.Additionally, you may need to modify your sites Media Queries in the CSS to get the products to display the way you wish.
Forum: Fixing WordPress
In reply to: Change WordPress URL (admin) from .com to .com.brYou may also need to utilize a plugin such as Better Search Replace to convert all instances of the
.comto.com.brto update all references.Forum: Fixing WordPress
In reply to: Error text in front page and not able to access dashboardHey there,
Have you already tried disabling your plugins? If you have phpmyadmin go into the wp_options table and find the active_plugins row and copy and save what you have active currently then just replace it with
a:0:{}to deactivate them all.This will rule out there being some kind of plugin conflict. Once you’ve ruled that out just replace
a:0:{}with what was originally in there.Forum: Fixing WordPress
In reply to: Display users activity for frontendHey @parths have you looked into https://ww.wp.xz.cn/plugins/aryo-activity-log/ or https://ww.wp.xz.cn/plugins/user-activity-log/ yet?
There’s also https://ww.wp.xz.cn/plugins/stream/ for wp-admin type activity.
I hope this helps!