Forum Replies Created

Viewing 15 replies - 1 through 15 (of 62 total)
  • I have the exact same issue and have had it ever since switching to https a gazillion years ago. And it’s a pain in the butt, since I use a lot of internal links.

    Thread Starter thetravelgal

    (@thetravelgal)

    My bad for not getting back on this.

    I was traveling when this happened and the next time I checked it, a couple of days later, it loaded normally.

    So I’m not sure what was going on. But it seems to be working again. (Traveling and then sick, so not using WordPress a lot at the moment.)

    Thread Starter thetravelgal

    (@thetravelgal)

    Perfect!!!
    You made my day. Thanks.

    Thread Starter thetravelgal

    (@thetravelgal)

    Awesome. I can do that!

    Thread Starter thetravelgal

    (@thetravelgal)

    THANK YOU! You saved me hours and hours of troubleshooting.

    Grow Social did an update very recently and that must have caused the problem. As soon as I disabled it, everything worked again.

    (No, the large image isn’t supposed to be clickable. And I’m just adding the images like any other image and then going into the text editor and adding vspace=”10″ to keep them separated. A very non-technical solution that worked until now!)

    I don’t know where/how to add the CSS code you suggest, so I’ll go to Grow with the problem.

    Thank you again.

    Thread Starter thetravelgal

    (@thetravelgal)

    Oops. My husband just found some PAGES where the links none of the links work on mobile – like Africa, but where SOME do work on desktop!!!! https://explorationvacation.net/africa-and-middle-east-page/

    But other pages like Europe and my home page, seem to still work perfectly fine on both.

    But neither of us can find a POST where the links work.

    I’m so confused.

    Thread Starter thetravelgal

    (@thetravelgal)

    I did some more testing. It seems to be a problem with Grow, Tailwind, and maybe lazyload??

    Visitors using a the Tailwind Chrome toolbar see only a grey box for the hidden pins. The Pinterest Chrome toolbar app works fine. As does the Grow Pinterest button.

    When I’m logged in on the WP edit screen, I have to hit the Grow Pinterest button (which I just added, I didn’t have one before) TWO TIMES. After that the Tailwind and Pinterest Chrome toolbar apps work fine. If I try to use either of them without first using the grow button a couple of times, none of the hidden pins show up in any form.

    Thread Starter thetravelgal

    (@thetravelgal)

    While saving the draft.

    Thread Starter thetravelgal

    (@thetravelgal)

    It just gave me the simple error text message you get when something goes wrong in WordPress. Like WordPress wasn’t actually connecting.

    I was using rewrite and republish. I’d been using it for a couple of days.

    All of yesterdays work was there, but the draft log didn’t show any entries for today.

    Thread Starter thetravelgal

    (@thetravelgal)

    Filename: wp-content/plugins/wordpress-seo/vendor/autoload.php
    File Type: Plugin
    Details: This file belongs to plugin “Yoast SEO” version “16.0.1” and has been modified from the file that is distributed by www.ads-software.com for this version. Please use the link to see how the file has changed. If you have modified this file yourself, you can safely ignore this warning. If you see a lot of changed files in a plugin that have been made by the author, then try uninstalling and reinstalling the plugin to force an upgrade. Doing this is a workaround for plugin authors who don’t manage their code correctly. Learn More

    The Original Version of the file The Modified Version on your WordPress system
    4 4
    5 require_once __DIR__ . ‘/composer/autoload_real.php’; 5 require_once __DIR__ . ‘/composer/autoload_real.php’;
    6 6
    7 return ComposerAutoloaderInit493313135e52c303e811a2a95cb84956::getLoader(); 7 return ComposerAutoloaderInit9603a17442dbea876364a259286a4803::getLoader();
    8

    Filename: wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader.php
    File Type: Plugin
    Details: This file belongs to plugin “Yoast SEO” version “16.0.1” and has been modified from the file that is distributed by www.ads-software.com for this version. Please use the link to see how the file has changed. If you have modified this file yourself, you can safely ignore this warning. If you see a lot of changed files in a plugin that have been made by the author, then try uninstalling and reinstalling the plugin to force an upgrade. Doing this is a workaround for plugin authors who don’t manage their code correctly. Learn More

    The Original Version of the file	The Modified Version on your WordPress system
    37	* 	37	* 
    38	* @author Fabien Potencier <[email protected]> 	38	* @author Fabien Potencier <[email protected]> 
    39	* @author Jordi Boggiano <[email protected]> 	39	* @author Jordi Boggiano <[email protected]> 
    40	* @see   https://www.php-fig.org/psr/psr-0/ 	40	* @see   https://www.php-fig.org/psr/psr-0/
    41	* @see   https://www.php-fig.org/psr/psr-4/ 	41	* @see   https://www.php-fig.org/psr/psr-4/
    42	*/ 	42	*/ 
    43	class ClassLoader 	43	class ClassLoader 
    44	{ 	44	{ 
     	 	45	   private $vendorDir; 
     	 	46	 
    45	   // PSR-4 	47	   // PSR-4 
    46	   private $prefixLengthsPsr4 = array(); 	48	   private $prefixLengthsPsr4 = array(); 
    47	   private $prefixDirsPsr4 = array(); 	49	   private $prefixDirsPsr4 = array(); 
    …	 	…	 
    57	   private $missingClasses = array(); 	59	   private $missingClasses = array(); 
    58	   private $apcuPrefix; 	60	   private $apcuPrefix; 
    59	 	61	 
     	 	62	   private static $registeredLoaders = array(); 
     	 	63	 
     	 	64	   public function __construct($vendorDir = null) 
     	 	65	   { 
     	 	66	       $this->vendorDir = $vendorDir; 
     	 	67	   } 
     	 	68	 
    60	   public function getPrefixes() 	69	   public function getPrefixes() 
    61	   { 	70	   { 
    62	       if (!empty($this->prefixesPsr0)) { 	71	       if (!empty($this->prefixesPsr0)) { 
    63	           return call_user_func_array('array_merge', $this->prefixesPsr0); 	63	           return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
    64	       } 	73	       } 
    65	 	74	 
    66	       return array(); 	75	       return array(); 
    …	 	…	 
    279	    */ 	288	    */ 
    280	   public function setApcuPrefix($apcuPrefix) 	289	   public function setApcuPrefix($apcuPrefix) 
    281	   { 	290	   { 
    282	       $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; 	282	       $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
    283	   } 	292	   } 
    284	 	293	 
    285	   /** 	294	   /** 
    …	 	…	 
    300	   public function register($prepend = false) 	309	   public function register($prepend = false) 
    301	   { 	310	   { 
    302	       spl_autoload_register(array($this, 'loadClass'), true, $prepend); 	311	       spl_autoload_register(array($this, 'loadClass'), true, $prepend); 
     	 	312	 
     	 	313	       if (null === $this->vendorDir) { 
     	 	314	           return; 
     	 	315	       } 
     	 	316	 
     	 	317	       if ($prepend) { 
     	 	318	           self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; 
     	 	319	       } else { 
     	 	320	           unset(self::$registeredLoaders[$this->vendorDir]); 
     	 	321	           self::$registeredLoaders[$this->vendorDir] = $this; 
     	 	322	       } 
    303	   } 	323	   } 
    304	 	324	 
    305	   /** 	325	   /** 
    …	 	…	 
    308	   public function unregister() 	328	   public function unregister() 
    309	   { 	329	   { 
    310	       spl_autoload_unregister(array($this, 'loadClass')); 	330	       spl_autoload_unregister(array($this, 'loadClass')); 
     	 	331	 
     	 	332	       if (null !== $this->vendorDir) { 
     	 	333	           unset(self::$registeredLoaders[$this->vendorDir]); 
     	 	334	       } 
    311	   } 	335	   } 
    312	 	336	 
    313	   /** 	337	   /** 
    …	 	…	 
    365	       } 	389	       } 
    366	 	390	 
    367	       return $file; 	391	       return $file; 
     	 	392	   } 
     	 	393	 
     	 	394	   /** 
     	 	395	    * Returns the currently registered loaders indexed by their corresponding vendor directories. 
     	 	396	    * 
     	 	397	    * @return self[] 
     	 	398	    */ 
     	 	399	   public static function getRegisteredLoaders() 
     	 	400	   { 
     	 	401	       return self::$registeredLoaders; 
    368	   } 	402	   } 
    369	 	403	 
    370	   private function findFileWithExtension($class, $ext) 	404	   private function findFileWithExtension($class, $ext) 
    …	 	…	 
    377	           $subPath = $class; 	411	           $subPath = $class; 
    378	           while (false !== $lastPos = strrpos($subPath, '\\')) { 	412	           while (false !== $lastPos = strrpos($subPath, '\\')) { 
    379	               $subPath = substr($subPath, 0, $lastPos); 	413	               $subPath = substr($subPath, 0, $lastPos); 
    380	               $search = $subPath.'\\'; 	380	               $search = $subPath . '\\';
    381	               if (isset($this->prefixDirsPsr4[$search])) { 	415	               if (isset($this->prefixDirsPsr4[$search])) { 
     	 	416	                   $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); 
    382	                   foreach ($this->prefixDirsPsr4[$search] as $dir) { 	417	                   foreach ($this->prefixDirsPsr4[$search] as $dir) { 
    383	                       $length = $this->prefixLengthsPsr4[$first][$search]; 	383	                       if (file_exists($file = $dir . $pathEnd)) {
    384	                       if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) { 	 	 
    385	                           return $file; 	419	                           return $file; 
    386	                       } 	420	                       } 
    387	                   } 	421	                   }

    And so on.

    I’m assuming it’s pulling errors from the latest version of Yoast, since I updated this morning. But it would be nice to confirm that so I don’t need to delete the whole plugin. The last update of Yoast indicated it was 100% compatible with both versions of WordPress.

    I most definitely will NOT be updating WordPress anytime soon.

    Thread Starter thetravelgal

    (@thetravelgal)

    I think I was too quick to blame Yoast. It was Yoast, but I think Yoast wasn’t working because of a REST API issue caused by WP External links. So not Yoast’s fault. I’m still testing now that I deleted that plug-in. And I will follow up and check the database. I haven’t done that for awhile anyway. Thanks for the quick response.

    You can consider this closed. If it still occurs, I’ll have to dive in deeper.

    Thread Starter thetravelgal

    (@thetravelgal)

    It was already set that way. I tried changing it and changing it back, but it didn’t make any difference. ??

    Thread Starter thetravelgal

    (@thetravelgal)

    I should have known. It’s the ROCKET update. Thanks for the fast response – this is a great plugin.

    Thread Starter thetravelgal

    (@thetravelgal)

    Thanks. I’ve updated a lot of things in the past couple of weeks, so it could well be another plugin is causing the problem. Or all those JS errors that I don’t really know what to do with, but know I have to fix. I’ll check plugins first and will report back if I find a conflict.

    I have this same problem. Where do I put the code you provided?

    (I tried adding it in the custom CSS field, but it didn’t do anything.)

    Like jakemore said, it would be easiest and best if it just left the revealed text the same color as the text leading into it.

Viewing 15 replies - 1 through 15 (of 62 total)