Brendon Brown
Forum Replies Created
-
Forum: Plugins
In reply to: [YMC Filter] Manual sort of posts (or by meta key)I appreciate the prompt and detailed reply. I understand now that the constraints are a product of the wp_query.
Since my custom posts are all scheduled in the future, I cannot set a future publish date on them – your plugin will allow me to display them in a grid, but clicking will result in a 404 page.
It sounds like I will need the second option you provide to sort manually. Not idea, since I don’t want to edit the grid every time I add a new post, but fine for the time being.
Deprecation is a warning message not an emergency.
Make sure in your wp-config.php has code
define('WP_DEBUG', false);Forum: Themes and Templates
In reply to: [Astra] Header Builder – Widgets HiddenI’m having the same issue, but with the footer builder.
On several menus, the options don’t even show up.No issues that I can see.
I click on the Save&Generate Feed button and the console returns:load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,utils,plupload&ver=4.8:9 JQMIGRATE: Migrate is installed, version 1.4.1
wppfm_ajaxdatahandling.min.js?ver=fr-1.6.1:7 Feed update started at 10:44:29
wppfm_ajaxdatahandling.min.js?ver=fr-1.6.1:7 Feed update ended at 10:44:41 (runtime 12.158 seconds).Thanks for getting back to me. These columns already exist in my table:
8 feed_title VARCHAR 500 NULL NULL
9 feed_description VARCHAR 100 NULL NULLI have moved them to positions 1 and 2 and changed varchar values to those you stipulate above.
What will this change?
First add this to your wp-config.php file:
define( 'WP_DEBUG', true );
Then look at the error messages.Forum: Fixing WordPress
In reply to: WordPress Admin Panel won’t load – site is liveAs @mcfreder says above, the very first thing a WordPress developer should do it open wp-config.php and add the line:
define( 'WP_DEBUG', true );
This will throw any errors above your rendered html and most likely point at the issue.Forum: Plugins
In reply to: [PayPal for WooCommerce] Transaction ID from APIThanks for replying here. I didn’t get the notification of your reply and apologize that I did not follow up.
Our integration is locked into the WooCommerce API, which I don’t think allows access to post meta. In that API, transaction_id shows up both as an object under Order and under payment_details.
We are looking to see if we can pull the ID out of the order notes with some REGEX, but using the actual field would be ideal. Any idea why the transaction_id is not where it’s supposed to be?
Forum: Plugins
In reply to: [WooCommerce] Is there really no 3PL Central integration for WooCommerce?Well lookey here:
https://github.com/ThomasCutting/3pl-central-integration-pluginForum: Plugins
In reply to: [WooCommerce] Is there really no 3PL Central integration for WooCommerce?@svtx I found this topic in my research for 3pl Central integrations. I’ve been in the process of integrating my ERP with 3PL Central and they pushed me in the direction of SPS Commerce, an EDI solution provider.
Working with their developers has been nothing short of painful – they are very short on people skills and adamant about making sure all parties are on every single call.
SPS Commerce is clunky and unwieldy and expensive (even for the “prebuilt” solution) and all I require is a basic API integration between the systems.
I can share your frustration.
Thank you Vishy. This was indeed the solution for me.
Forum: Fixing WordPress
In reply to: Unpacking the package… Invalid Data provided. Plugin install failed.Looks like I was pushing my WordPress submodule on a detached HEAD. Fixed the head by deleting local changes and tracking the master, then pushed, and problem solved.
This would lead me to believe that if you don’t use the same system as me, at least something is wonky with your wordpress install, and you probably want to start fresh.
Forum: Fixing WordPress
In reply to: Unpacking the package… Invalid Data provided. Plugin install failed.Just starting to get that myself. I deploy through Git so I imagine that it may be a permissions problem. I’ll report back if I have any constructive findings.
Forum: Themes and Templates
In reply to: How to create mobile theme for my themeCSS media queries are currently the cleanest method for making a mobile-friendly theme. By inserting a media query into your main theme stylesheet, you can call separate styling for mobile devices. There are several formulations, but media queries generally look like: “@media screen and (max-width: 699px) and (min-width: 520px) {CSS STYLE HERE}” . I personally prefer to use a query to @import a whole separate stylesheet for the predetermined screen size.
Forum: Installing WordPress
In reply to: Separate WordPress installation or network@jakilevy A good read, thanks. I’ve been considering moving all my separate sites to multisite setup for manageability, but that was the reality check i needed.