Michael Burridge
Forum Replies Created
-
Forum: Accessibility
In reply to: inaccessible backendCan you see the login screen when you go to yoursite/wp-admin? If so are you able to enter your login credentials? What happens when you do so? What error messages are you seeing?
Forum: Fixing WordPress
In reply to: My side bar favorite posts are not showingI see you’re using Kadence theme. The theme may have a template that includes a sidebar. The best thing would be to contact the theme author’s support.
Forum: Fixing WordPress
In reply to: authors API$authors = get_users( array( 'role__in' => array( 'author' ) ) );For more info see this page.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
Forum: Fixing WordPress
In reply to: Anchor link not scrolling all the way downAdd
scroll-behavior: smoothto thehtmlelement in your theme’s style.css file:html { scroll-behavior: smooth; }Then add an
onclickattribute to theaelement to scroll the About page into view:<a class="elementor-icon" onclick="document.querySelector('#about').scrollIntoView({behaviour:'smooth'});"> <svg.....> </a>Hope this helps.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
TBH I think you’re going to struggle with this. Embedding a spreadsheet is not really the way to add interactivity to a page, and even if you can get an interactive spreadsheet embedded in a page it still needs to interface to API’s such as the WooCommerce cart.
JavaScript is made for this kind of use case and if it were me I’d put my time and energy into implementing a solution in JavaScript.
Hi @pathduck
You’re going to need to add some code to your theme’s
functions.phpfile. What theme are you using? I’ve tested the following code with Twenty Twenty-One theme:add_filter( 'previous_post_link', 'change_prev_attributes' ); add_filter( 'next_post_link', 'change_next_attributes' ); function change_prev_attributes( $format ) { $format = str_replace( 'rel="prev"', 'rel="next"', $format ); return $format; } function change_next_attributes( $format ) { $format = str_replace( 'rel="next"', 'rel="prev"', $format ); return $format; }- This reply was modified 3 years, 5 months ago by Michael Burridge.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
Forum: Fixing WordPress
In reply to: WP dtatbase pointingm to wrong theme fileBUT all my sidebars are missing
The sidebars are probably related to the theme. Now that you’ve got your site back you can change your theme to the one you originally want to use.
I see bad links for related products below my products
I’m not sure what you mean by this, but this page lists some strategies for dealing with broken links in the database.
Hope this helps.
@andersonviviel what precisely are you trying to do. Do you just need an interactive spreadsheet on the web page, or do you need changes made on the web page to update a master spreadsheet hosted on a server somewhere?
Forum: Fixing WordPress
In reply to: twenty twenty-two How to change menu link colorHi
I had hoped that it would be possible to change the link hover colour using
theme.jsonbut I couldn’t find a way to do it.The only way I found to do it was to add the following to the theme’s
style.cssfile:.wp-block-navigation-item__label:hover { color: blue; }Ensure that you’re using a child theme as that will get over-written if you update the theme.
Forum: Fixing WordPress
In reply to: The WordPress wp admin does not appearHi,
I can’t reproduce the issues. The links in the menu all seem to work fine and https://testdepurete.info/wp-admin takes me to the login page (though clearly I can’t actually attempt to log in as I lack the credentials).
Have you tried clearing your browser cache and then revisiting the site?
Forum: Fixing WordPress
In reply to: Nav Menu not clickable on mobileI can confirm that the hamburger menu is not working. I did some digging around but can’t figure out why.
TBH this isn’t really a WordPress issue but an Elementor one. I suggest you post your question to their support or in their community.
Sorry I’m not able to help any more than that.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
Hi
There’s this fairly recent list of Real Estate plugins: https://www.wpbeginner.com/showcase/best-wordpress-real-estate-plugins-compared/
If none of those are suitable, then you may need a custom coded solution that can work with the API’s exposed by the portals that you’re trying to export data to.
A little more detail of what exactly it is that you’re trying to do would be useful to help us to help you better.
Hi,
You could use a plugin such as wpDataTables. Here’s a page from their site explaining the process.
If you don’t want to use a plugin then you could try these instructions instead.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
Forum: Fixing WordPress
In reply to: Ignoring ‘Diasbale Plugin’You can add the following line to your theme’s
functions.phpto prevent plugins from updating automatically:add_filter( 'auto_update_plugin', '__return_false' );See here or here for more info.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
- This reply was modified 3 years, 5 months ago by Michael Burridge.
Forum: Fixing WordPress
In reply to: WP dtatbase pointingm to wrong theme fileHere’s a link showing how to change the theme from the database when you don’t have wp-admin access:
https://help.one.com/hc/en-us/articles/115005585909-Change-your-WordPress-theme-from-the-database