Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)
  • Our site has exactly the same ‘problem’ as Mishwarek states and I’m also looking for a solution that doesn’t block Google’s bots from accessing the content (e.g. robots.txt) as this causes other real problems.

    Whilst I totally agree that these index pages are not something a ‘normal’ person would see, they do cause errors in Google Search Console and this can’t be good. I recently discovered that Google now ‘needs’ access to parts of the site that previously were advised to be restricted.

    I would like some guidance if possible on how to apply some basic CSS (sizing/viewport setting) to ‘false’ pages with a link structure …/wp-content/uploads/*

    Any help appreciated

    Thread Starter slatbh

    (@slatbh)

    Many thanks for your help. Added the code and it is now working again.

    Much appreciated

    Thread Starter slatbh

    (@slatbh)

    I enabled plugin, problem returned. By compression, do you mean ‘minify’? If so, this wasn’t enabled in general settings. If not, I couldn’t find compression. I realise I must be being blind.

    Please note we have been using this plugin for some years and this is the first glitch.

    I had to disable plugin again

    Thread Starter slatbh

    (@slatbh)

    Hi

    Thanks very, very much for your full and helpful reply. Your advice has allowed me to resolve the problem!!!

    I was getting getting jQuery from Google in the theme to try to speed up loading times (based on advice I read last year), but I have removed this function and problem is gone.

    Once again, thanks for your help.

    However, strange that this hadn’t caused problems before and now only in Safari. You live and learn.

    Thread Starter slatbh

    (@slatbh)

    Hi

    Thanks for the reply and suggestion. Unfortunately, it hasn’t worked.

    Note I was using Cloudflare plugin and its extension in W3 Total cache. I disabled both, purged all caches (W3 and Cloudflare) and there was no effect.

    I also did all of the above with Cloudflare set to development mode and still have the bug.

    Currently, Cloudflare is disabled (plugin and W3 cache extension)

    In Safari, I see multiple problems loading jQuery. A typical error is:
    “ReferenceError: Can’t find variable: jQuery”

    I don’t see this with Chrome or Firefox

    Thanks in advance for your further help

    Steve

    Thread Starter slatbh

    (@slatbh)

    Hi Martyn

    I’m not sure if this is the best solution, but the code below is what I did for the first instance (in my case line 830 but this could vary!). I added the nofollow in a similar way for the other instances. You should note the use of single versus double quote marks.

    $ProductString .= "<a class='upcp-catalogue-link rel='nofollow' " . ($Lightbox_Mode

    Good luck

    Steve

    Thread Starter slatbh

    (@slatbh)

    Hi Martyn

    An update, I wrote to the developer via email and they provided some information that has allowed me to add the ” rel=’nofollow’ “. They also advised me that it is on a list for future updates, but no idea when.

    The solution involves manually editing a file within the plugin (shortcodes.php currently 12 instances of ” <a class=’upcp-catalogue-link “) and adding rel=’nofollow’ to it. Obviously, backup before doing this and it is at your own risk… However, it worked for us.

    Until the developer includes this, this file will need to be edited each time the plugin is updated.

    Hope this helps

    Steve

    Thread Starter slatbh

    (@slatbh)

    Hi Martyn

    Unfortunately, we haven’t received one yet

    Steve

    Thread Starter slatbh

    (@slatbh)

    I am happy to add the required text to the required shortcodes.php file, but as it is long and I am not a skilled developer/programer, could you help me out by identifying the function(s) and or line number(s) where it needs to be added. I remind you this is for an external link in the products sections.

    In case it is important, we have purchased your product. Please advise us if there is a more appropriate way to get support.

    Kind regards

    Steve and Eneida

    Thread Starter slatbh

    (@slatbh)

    Thanks again for your reply.

    Indeed, everything is now in Portuguese, which wasn’t the case when I last wrote/replied. However, this was achieved by changing the label names and not through the translation.

    As we have found a workaround for our needs, there is no need to continue this thread. Should we encounter a problem in the future, we will contact tech support as we bought the plugin.

    Thanks for your help

    Thread Starter slatbh

    (@slatbh)

    I forgot to say that I have also looked at the .po file in Textwrangler and the translation seems complete

    Thread Starter slatbh

    (@slatbh)

    Thanks for your reply.

    First, I can confirm that the language is set to ‘Português do Brasil’.

    Second, yes other plugins are showing the correct language (see one (Checkfront) at bottom of page linked to below). We are also using the Brazilian Portuguese version of WordPress. This is something we are familiar with as my wife has previously translated plugins language files into pt_BR.

    The .mo and .po files are in …/wp-content/plugins/ultimate-product-catalog/lang when I look with ftp client.

    After writing, my wife bought the plugin, so perhaps this request is better dealt with there?

    see https://www.londresparaprincipiantes.com/nossos-passeios-guiados/

    My wife has translated the label names in the plugin itself (pro version), so this is where the Portuguese text comes from e.g. “Exibir por”

    Thanks again for your support

    Thanks Marko for this solution.

    To help others, below is a quick and dirty translation into Portuguese. Feel free to modify

    if ( $label == ‘Sunday’ ) { $label = ‘Domingo’; }
    else if ( $label == ‘Monday’ ) { $label = ‘Segunda’; }
    else if ( $label == ‘Tuesday’ ) { $label = ‘Ter?a’; }
    else if ( $label == ‘Wednesday’ ) { $label = ‘Quarta’; }
    else if ( $label == ‘Thursday’ ) { $label = ‘Quinta’; }
    else if ( $label == ‘Friday’ ) { $label = ‘Sexta’; }
    else if ( $label == ‘Saturday’ ) { $label = ‘Sábado’; }

    if ( $conditions == ‘Clear’ ) { $conditions = ‘Claro’; }
    else if ( $conditions == ‘Chance of Snow’ ) { $conditions = ‘Pode nevar’; }
    else if ( $conditions == ‘Chance of Rain’ ) { $conditions = ‘Pode chover’; }
    else if ( $conditions == ‘Chance of Freezing Rain’ ) { $conditions = ‘Pode gear’; }
    else if ( $conditions == ‘Chance of Sleet’ ) { $conditions = ‘Pode nevar com chuva’; }
    else if ( $conditions == ‘Chance of Thunderstorms’ ) { $conditions = ‘Temporal’; }
    else if ( $conditions == ‘Cloudy’ ) { $conditions = ‘Nublado’; }
    else if ( $conditions == ‘Flurries’ ) { $conditions = ‘Flurries’; }
    else if ( $conditions == ‘Fog’ ) { $conditions = ‘Fog’; }
    else if ( $conditions == ‘Freezing Rain’ ) { $conditions = ‘Chuva de granizo’; }
    else if ( $conditions == ‘Haze’ ) { $conditions = ‘Neblina’; }
    else if ( $conditions == ‘Mostly Cloudy’ ) { $conditions = ‘Nublado’; }
    else if ( $conditions == ‘Mostly Sunny’ ) { $conditions = ‘Sol’; }
    else if ( $conditions == ‘Overcast’ ) { $conditions = ‘Nublado’; }
    else if ( $conditions == ‘Partly Cloudy’ ) { $conditions = ‘Parcialmente nublado’; }
    else if ( $conditions == ‘Partly Sunny’ ) { $conditions = ‘Parcialmente ensolarado’; }
    else if ( $conditions == ‘Rain’ ) { $conditions = ‘Chuva’; }
    else if ( $conditions == ‘Scattered Clouds’ ) { $conditions = ‘Nuvens escassas’; }
    else if ( $conditions == ‘Sleet’ ) { $conditions = ‘Neve com chuva’; }
    else if ( $conditions == ‘Snow’ ) { $conditions = ‘Neve’; }
    else if ( $conditions == ‘Sunny’ ) { $conditions = ‘Sol’; }
    else if ( $conditions == ‘Thunderstorms’ ) { $conditions = ‘Temporais’; }
    else if ( $conditions == ‘Thunderstorm’ ) { $conditions = ‘Temporal’; }
    else if ( $conditions == ‘Unknown’ ) { $conditions = ‘Desconhecido’; }

    I don’t know if this has been ‘fixed’ as there hasn’t been a post for a while with the same problem (maths not being accepted). I think johnja1 has a different issue.

    However, we installed this plugin recently and are also having issues with incorrect refusals. These refusals appear random, but have occurred using using Chrome v33 and IE v10 (this is from our site’s visitors).

    We are using W3 Total Cache plugin. I don’t want to disable it as it is solving a different more serious problem. Also, as this is very widely used plugin, I think it would be fairly important for Captcha to be compatible, if possible. We like Captcha for its simplicity.

    We are only using it on the comments form at present.

    We are also using it in Portuguese, but I assume the translation is okay as numbers to words is so simple, but haven’t checked this.

    The site is https://www.londresparaprincipiantes.com

    I am also happy to offer some debugging support, but don’t know if I have all the skills

    Regards

    Steve

    The same thing happened to me. Did you ever find a solution?

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