garethgillman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search Function showing description keywords instead of title onlyRelevanssi should replace it, it hooks into the search function and changes the way it searches the data, you may need to speak to your theme developers support.
Forum: Fixing WordPress
In reply to: Search Function showing description keywords instead of title onlyInstall Relevanssi which allows you to set the search criteria, e.g. only search titles.
Forum: Fixing WordPress
In reply to: How to prevent Push Ads on specific rolesThis plugin does role based ad management, you will need to check other plugins for other features you want.
Forum: Fixing WordPress
In reply to: How to prevent Push Ads on specific rolesIt depends on how you are adding the ads? Via a plugin or hard coded in?
if you’re hard coding them you can use the following to display something to everyone who isn’t an author.
<?php $user = wp_get_current_user(); if ( !in_array( 'author', (array) $user->roles ) ) { // do your ads }
Forum: Fixing WordPress
In reply to: WordPress Can’t Recognise PHP UpdateThis is more of a question for your host as they can guide you better on why it may not be working. With the multiphp manager in cpanel, it should add a line to your .htaccess file which sets the php version.
If you go to https://theidealmobile.com/wp-admin/site-health.php?tab=debug, go to the “server” tab and your php version will be shown there.
- This reply was modified 5 years, 1 month ago by garethgillman.
Forum: Fixing WordPress
In reply to: Recommended image size for WooCommerce under Product imageIt will depend on your theme and your product images, and how you want the page to look, Woocommerce sets a default for the product image BUT the theme can override that and set it’s own, it should tell you the current default if you go to appearance > customize > woocommerce > product images
Forum: Fixing WordPress
In reply to: i am facing a problem on my site there is a tiyu.php in every folderChange your theme to a default one and then go to the support for that theme and ask them to fix the issue, as it’s a commercial theme, we can’t support you for issues on these forums.
Forum: Fixing WordPress
In reply to: Facebook link to websiteSounds like you may have been “hacked” and have malware on the website, speak to your webhost about putting a backup and see if that fixes it, if it doesn’t then you will need to fix the hack, this is a good guide to start with.
Forum: Fixing WordPress
In reply to: Website errorSpeak to your webhost and cloudflare, they are the only ones who can help as this could be a simple dns issue or it could be a complex routing traffic issue.
Forum: Fixing WordPress
In reply to: API Call with PHP for Contact Form 7 – out of my depthYou will need to pay someone to help with this (if you don’t have the expertise) as it’s quite complex and time consuming to do. To give you a head start you need to hook into
wpcf7_submit
, you attach the api functions in there.Forum: Fixing WordPress
In reply to: Cookie ProblemLooks like a plugin or the theme is trying to change something on the wp-login.php page (such as the wp logo) and is possibly outdated code (or just broken). Only way to fix it is to find the cause, first step is to rename the plugins folder (via ftp) which will disable all the plugins. Does the site start working? If so, then you need to delete them all and install them one by one til the issue re-appears.
If that doesn’t work then try a different theme, you may have used the theme without issue before but the theme may not be compatible with a plugin or a new version of WP and causing the error.
Forum: Fixing WordPress
In reply to: Blocks not working as beforeW3schools is a good place to start with learning the basics of CSS although you will need to learn about the browser inspector to make changes to a live site. This video explains how to use the inspector view.
Forum: Fixing WordPress
In reply to: Blocks not working as beforeHave you tried a quote block? If you don’t like the style of a certain block you can write custom css in your theme to overwrite the default to be how you like.
Forum: Fixing WordPress
In reply to: Switch Admin Accountwww.remarpro.com doesn’t host or own any websites created with it, did you pay for the hosting or did the previous developer?
If you did then contact them and ask them to change the admin email address via the database (which is super easy) so you can reset the password.
If the previous developer paid for the hosting then you have no recourse and you would need to speak to them about them providing you the files and database so you can reinstall the website on your own hosting.
Forum: Fixing WordPress
In reply to: Center all images and image captionsadd the following to your css:
.wp-block-image { text-align: center; }