Andrzej
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Content Copy Protection with Color Design] Whole site is copy protectedI seem to have solved this. I uninstalled another plugin (Gedshow) so it would appear to have been a plugin conflict. The protection has gone from the whole site.
Forum: Plugins
In reply to: [Remove Footer Credit] Latest update – footer not removedWhile we wait for an update, what @teescout recommends above worked for me. The steps are:
1) Revert to version 1.0.6 of this plugin. (I used the WP Rollback plugin for this)
2) Remove the backslashes in the code entered. The backslashes would not have been in the original code.
3) Tested the site and the footer credit was removed- This reply was modified 4 years, 10 months ago by Andrzej.
Many thanks for the info. My setup is WP 5.5.1 so I believe jQuery has been reinstated. I had another go at this today and, for some reason, was able to press the continue button.
Thank you very much for your help. Yes, it was the unregistered blocks causing it. Andrzej
Forum: Themes and Templates
In reply to: [Shoreditch] Cannot update to Shoreditch Version: 1.2.6I did Appearance->Themes->Add New and uploaded the .zip file through there from the saved zip on my computer. I can activate this new version but if I try to activate my child theme CSS file I’m told there is no parent theme. At that point I can’t go back and re-estabish the previous theme version with my child theme because I get the message that the old parent theme is not found. I can then only restore from a backup.
It’s as if the new version does not consider that a user may be using a child theme.
For some reason the procedure for this theme update has not been pushed to the dashboard, as is seamless and usual. Also, for some reason the new version does not show in the trac link you showed me.
Shoreditch is a nice theme with some intersting features. With a little CSS to get rid of the blue defaults, this theme can shine and look modern. In my opinion it is worth pushing the update as a dashboard notification.
Forum: Themes and Templates
In reply to: [Shoreditch] Cannot update to Shoreditch Version: 1.2.6Hi, the new version is referenced here:
https://wordpress.org/support/topic/default-font-color/
- This reply was modified 6 years, 3 months ago by Andrzej.
Forum: Themes and Templates
In reply to: [Shoreditch] Default font colorrigbipa, I agree that the default paragraph text colour in Shoreditch gives poor contrast against a white background. A partially sighted viewer could struggle with that.
Whilst you have stated a preference for not changing this with CSS, using browser tools I managed to change the default text colour on your home page and posts by using:
.entry-content p { color: #494b50; }That, however, changed the paragraph text colour in your top footer. You appear to have already changed the widget footer top area background colour to green. I added color #fff to that CSS to keep the current white paragraph text:
.widget-footer-top-area { background: #1e7145; color: #fff; }You can add this CSS by going to Customize > Additional CSS or by using an online child theme generator like this:
https://childtheme-generator.com/create-child-theme/Shoreditch/shoreditch
and upload the child theme zip file, from the dashboard by using the theme upload feature. You would then activate the child theme.
I’ve looked at the Github request for this and agree this suggestion would be a good enhancement to clear up the accessibility issue.
Forum: Themes and Templates
In reply to: [Dyad] Dyad-2 – Have 3 Posts but “Nothing Found” displays.You have a “Coming Soon!” holding page on the link you have provided.
Forum: Plugins
In reply to: [Code Snippets] Exclude php snippet on specific pageHi Shea,
I very much appreciate the help from you both. I used your code above and it works perfectly.
Best regards,
AndrzejForum: Plugins
In reply to: [Code Snippets] Exclude php snippet on specific pageHi Shea,
I’m adding your code like this:
if ( is_page( '/categories/hotels/' ) ) return; function c3_display_dbl_spaces($content){ return preg_replace("/(.|\?|!)( {2})/", "\\1 ", $content); } add_filter( 'the_content', 'c3_display_dbl_spaces', 20 );The php snippet is to represent a non breaking space which I add with the space bar after a sentence full stop. It works fine but not on the page path mydomain.com/categories/hotels/ (page ID is 17493), where it breaks my external affiliate JavaScript code which is supposed to pull in up to date information from the business.
Forum: Plugins
In reply to: [Code Snippets] Exclude php snippet on specific pageThank you very much.
I understand where I need to substitute my page URL but don’t understand what I need to put in the curly brackets: {…}.
Am I able to add this code above or below into the same code snippet that I want to work on the rest of the site?
Hi @ironikus,
Thank you for investigating. Rather than going back and forwards between two plugin authors, I switched to another email protection plugin.
Best regards,
AndrzejHi Ironikus,
Because I told Astra support that the issue only occurs when your plugin is activated, they simply told me that I need to contact you. They did not make further comment about your plugin.
The URL of the full site is wimbledonvisitor.co.uk. You can also observe this behavior at
https://www.wimbledonvisitor.co.uk/info/attractions/
and
https://www.wimbledonvisitor.co.uk/categories/worship/
These pages also have the UAGB table of contents present – but Astra’s scroll to top is disabled. That works on desktop but not on mobile.
- This reply was modified 6 years, 10 months ago by Andrzej.
Forum: Themes and Templates
In reply to: [Shoreditch] Search button and boarderYou are welcome. I didn’t’ get it from the parent theme CSS but noticed that experimenting with input:focus added the red border to my forms too when on focus. I prepended the class for the search form, .search-form and that targeted just the search form. There possibly is alternative/better CSS but this works.
Forum: Themes and Templates
In reply to: [Shoreditch] Search button and boarderIs this what you are after?
.search-form input:focus { outline: none !important; /* Hides Shoreditch theme default onhover blue border */ border: 1px solid red !important; /* Add your new border and colour */ border-radius: 5px; /* Add radius to new border if required */ }Example image after implementing above CSS:
- This reply was modified 6 years, 11 months ago by Andrzej.