cecilyuf
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Hello!
I am also seeing this problem and also using Elementor. It is replacing some urls such as in the top level of the menus and in normal drop down menus. It is not replacing any of the URLs in the mega menu dropdowns nor any URLs within page content.
As evidenced here: https://staging.cictucson.org.
Since it’s been two months I wanted to stop in and refresh this request but in general this plugin is pretty spectacular so also THANK YOU!
Cecily- This reply was modified 5 years, 3 months ago by cecilyuf.
I did the same, in wp-cache-phase1.php, starting on line 677, I replaced:
function wpsc_get_realpath( $directory ) { $directory = realpath( $directory ); if ( substr( $directory, -1 ) == '/' || substr( $directory, -1 ) == '\\' ) { $directory = substr( $directory, 0, -1 ); // remove trailing slash } return $directory; }
With :
function wpsc_get_realpath( $directory ) { if ( $directory == '/' ) { return $directory; } $directory = realpath( $directory ); if ( substr( $directory, -1 ) == '/' || substr( $directory, -1 ) == '\\' ) { $directory = substr( $directory, 0, -1 ); // remove trailing slash } return $directory; }
Worked well. Thank you.
(I found wp-cache-phase1.php inside /wp-content/plugins/wp-super-cache)
- This reply was modified 7 years, 3 months ago by cecilyuf.
Forum: Plugins
In reply to: [Promotion Slider] [Plugin: Promotion Slider] Only first image showingthanks! I got it working actually.
Viewing 3 replies - 1 through 3 (of 3 total)