John Parris
Forum Replies Created
-
Forum: Hacks
In reply to: Strange apply_filters in a pluginHi, it looks like it calls some methods in the wpp class. See if you can find the wpp class, and go from there.
Forum: Fixing WordPress
In reply to: Unable to create a post, either written or mediaHi there,
As a test, does it work if you temporarily deactivate all plugins and switch to the default Twenty Fifteen theme?
Forum: Fixing WordPress
In reply to: Remove space between categoriesAh ok, that’s probably due to the styles in your theme not taking into account nested lists. I’d have to see it live though to offer any advice.
Hi,
If you need to import bulk images, you can use our CSV Manager plugin: https://ww.wp.xz.cn/plugins/easy-digital-downloads-csv-manager/
Forum: Plugins
In reply to: [Mailbag] Not repsponding after submitHi, can you share a link so I can see it happening? There might be a javascript error or something causing it to fail.
Does the stock EDD Downloads Cart widget work properly there if you temporarily add it?
Forum: Fixing WordPress
In reply to: commenting out Shortcodes and whateverIt depends on the code, but usually you can do that without any modification to the code.
Forum: Fixing WordPress
In reply to: Redirect to site/wp-adminGlad to hear it! Thanks for the update.
Hi,
Does it work if you temporarily deactivate all other plugins except EDD and switch to the default Twenty Fifteen theme?
Hi,
Are you using a custom widget or code snippet of some kind there? That doesn’t look like the stock widget output from EDD.
Forum: Hacks
In reply to: Making a JS Widget code a clickable linkHi,
As you noticed, you can’t add javascript there. You’ll need to use the
wp_nav_menu_itemsfilter to add a custom link to the menu. You can find some examples of those on WordPress StackExchange.Forum: Fixing WordPress
In reply to: commenting out Shortcodes and whateverYes you could. You can also use Pluginception to create custom plugins: https://ww.wp.xz.cn/plugins/pluginception/
Forum: Fixing WordPress
In reply to: Ongoing malware infectionsHi Tony,
Without details of the hacks it’s practically impossible to offer an answer to your question. But, I will say that after the first or second hack, someone knowledgeable should have been able to determine the point of entry and closed it off, even if it’s code on your site and not something in their server stack. They simply should be able to tell if they have qualified security staff, unless you’re running your own servers there that they can’t access. Six times is basically unacceptable. I can’t see any value of staying there from my perspective.
Forum: Fixing WordPress
In reply to: Remove space between categoriesHi,
It looks like you figured this out? I don’t see a lot of white space between the items: http://cl.ly/image/2S3c3y3g051T
Forum: Fixing WordPress
In reply to: Redirect to site/wp-adminYou can’t point the DNS record to a subfolder, only the domain. So, you’ll need an instance of Apache listening on admin.domain.com that has an Apache redirect to domain.com/wp-admin.
Something like this should work:
Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://domain.com/wp-admin/$1 [R=301,L]Try a handy .htaccess generator like this: http://www.webconfs.com/htaccess-redirect-generator.php