techstacy
Forum Replies Created
-
Or meta_key possibly?
Michel,
Thanks for your help with third party attributes.
I was able to locate the meta_key that holds the file path to the product’s attached video “_wp_attached_file”
phpmyadmin – https://ibb.co/sxVJ69w
I configured third party attributes as: %wpmr%,%cpf%,%unit%,%bto%,%yoast%,%attached%
I’ve configured the video_link entry in the feed generator as – https://ibb.co/HDDJJ6nz
For whatever reason it’s still not populating “_wp_attached_file”
Feed Link
Do you see anything I might have missed?I did add the patch to the plugin and video_link came up right away as an attribute option.
I’m working with plugin Really Simple Featured Video and have yet to find a rsvf_ source that populates video_link with a url, I’ll reach out to support for that plugin to see what they recommend.
Feed Link
Thanks again for your assistance with this! (●’◡’●)Works great. Thanks for all your help!
Upgraded to LP Version 4.2.7.7
Classes are now displaying again.
Thank You for your Assistance. (●’◡’●)Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Redirect after purchase not workingI”m seeing a similar “no results found” after checkout.
LP Version 4.2.7.5.1
Divi 4.27.4
Custom order slug lp-order-received
Offline Payment
ScreenshotThis issue was resolved with CSS from Senff – a11n (@senff). Thanks for stopping back by.
Thank You for your help with this! Your CSS code got the page looking great.
As for the source of the CSS: .wc-block-grid__products width: 100%;, I verified there was no custom CSS and disabled all plugins except for woo and it still produced a vertical column. Downloaded the theme and ran text search for the offending CSS but no luck. Any tips on hunting down the source?
That worked perfectly! Thanks 🙂
in CF7:
Under Form tab:
<p>Product Name<br />
[text product-name]
</p>Under Mail tab: Subject
[your-name] is asking about [product-name]heqtor,
I had the same issue until I turned off plugins one by one. It was a conflict with a knowledge base plugin I was using.
Forum: Plugins
In reply to: [Broken Link Checker] Version 1.11.4 is brokenSeeing Same. Front page is available. Admin throws 500 error until you remove the plugin via FTP.
Had a similar issue. Deleted all _wf* tables to correct. Suspect database corruption due to power outage.
Forum: Plugins
In reply to: [Quick Page/Post Redirect Plugin] 5.1.6 – redirects stopped workingSame here. Just updated Site to WP 4.4.1 with 5.1.6 previously installed. post Forwards have stopped working.
Quick redirects are working.Installed 5.1.5 to attempt to fix.
Open an incognito window in chrome.
The first time I click a link to a “redirected” page it works. If I navigate back and click the same redirected post link it stops redirecting.If you’re comfortable in Unix, I’ve found it useful do download a fresh copy of wordpress then use the “diff” command to point out what’s been modified by hackers.
(in ubuntu)
sudo mkdir .tmp
cd .tmp
sudo wget http://wordpress.org/latest.tar.gz –no-check-certificate
sudo tar -xzvf latest.tar.gz
sudo diff -qr /var/www/webz/.tmp/wordpress /var/www/webz/wordpress |grep differAnother clean up tactic is to delete all files in your wordpress install except for .htaccess, wp-config.php, and the /wp-content/ folder. Then copy the contents of freshly downloaded wordpress install back into the file system. You still have to find modified files in uploads and plugins but here are a few things that can help.
sudo find ./wp-content/uploads -type f -name “*.php” -delete
Deletes all .php files in the uploads directory.
sudo grep -lr ‘php $GLOBALS’ .
sudo grep -ril –include=*.php ^\'[0-9A-Za-z]*\=\’\;$ .Will help you hunt down base64 encoded content more often than not left by hackers.
Forum: Fixing WordPress
In reply to: Import External XML feedHave you considered wp-all-import plugin. It auto detects XML elements then allows you to decide how to apply them to posts, pages, or custom post types.