techstacy
Forum Replies Created
-
This 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 https://www.ads-software.com/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.
Forum: Plugins
In reply to: [Squelch Tabs and Accordions Shortcodes] Slider & dropdown menus not workingMatt,
I’ve unchecked “Load jQuery” & “Load jQuery UI”. jQuery UI theme is currently set to “smoothness”.
Unfortunately it doesn’t appear to have changed anything.
Forum: Plugins
In reply to: [Squelch Tabs and Accordions Shortcodes] Slider & dropdown menus not workingMatt,
I’m seeing something similar when I enabled “Squelch tabs and accordions” the front page slider and drop downs stopped working. I updated the ‘jQuery version to load’ version to 1.8.3 per Kierps recommendation above which returned slider and menu functionality.. but I still don’t see tabs. If I configure squelch tabs with any version of jquery above 1.8.3 slider and drop down menus stop.
https://www.dallasbuilders.com/tabstest/
https://www.dallasbuilders.com/divisions-and-councils/dallas-division/Wisdom of life theme 2.0 on WP 3.5.1
Thanks!
Forum: Plugins
In reply to: [WP Accordion Slider] wp-accordion-sliderTravis,
if you access the plugin through Media -> WP Accordian settings you don’t get the error message [/wp-admin/upload.php?page=wp-accordion]
If you access the plugin setting through Plugins -> Installed Plugins -> WP Accordian -> settings [/wp-admin/upload.php?page=wp-accordion-slider#settings] you do get the “You do not have sufficient permissions to access this page.”
If you are viewing the calendar in Internet Explorer, make sure “compatibility view” is turned off.
Forum: Themes and Templates
In reply to: How do I replace a Twenty Ten blog title with a jpeg image?To change the Twenty ten theme blog title to an image of your choice
look for:
`<span>
<a>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?></a>
</span>`Replace with:
`<span>
<div id=”logo”> <a href=”<?php bloginfo(‘url’); ?>”><img src=”https://www.your_URL.com/images/eco.jpg” alt=”Your text” /></a></div>
</span>`Remember to remove the beginning and ending ticks in the examples above.
To remove the lines at the top and bottom of the logos:
open style.css and look for #branding img. Change border- values to “0” see example below.
#branding img {
border-top: 0px solid #000;
border-bottom: 0px solid #000;oops WordPress 3.0.1