Carlo Merrick
Forum Replies Created
-
Forum: Plugins
In reply to: [Caldera Forms Anti Spam] reCaptcha not working on firefoxHi @cobraeagle.
Yea, if you see that logo, it is working. From version 3 it displays only that logo & does the work behind the scenes instead of tick boxes or math questions.
Forum: Plugins
In reply to: [Caldera Forms Anti Spam] Causes other forms to not workUnfortunately in goes against the support guidelines of www.ads-software.com. We will look into this further on our side and notify you when we have found a solution for this issue.
Forum: Plugins
In reply to: [Caldera Forms Anti Spam] Causes other forms to not workHi, Thank you for using Caldera Forms Anti Spam. Sorry to hear about this issue you are experiencing. Can you give me more information regarding what steps you took before encountering this issue? The captcha shouldn’t load for forms that don’t load the reCAPTCHA.
For the time being, please can you enable reCAPTCHA V3 for your forms until we have replicated and resolved this issue.
Kinds Regards
CarloForum: Fixing WordPress
In reply to: Can’t Edit Pages after Upgrade to WordPress 5.4@tony-lane . There could be a number of things that cause that error. Here is a link to help you trouble shoot? https://wpmantis.com/wordpress-editor-updating-failed-solved/
Let me know if this helped?
Forum: Fixing WordPress
In reply to: Appearance > Sidebars missing@webmastermh . I have found this article with a bunch of trouble shooting you can try see as it may be a few different things causing your sidebar to not “show up”.
https://www.elegantthemes.com/blog/tips-tricks/how-to-fix-a-missing-sidebar-in-wordpress
Forum: Fixing WordPress
In reply to: Appearance > Sidebars missing@webmastermh, thank you for the feedback. Have you tried activating a default theme like 2019 or something and just test if the sidebars are there? If it is, then just contact the theme support at themeforest for help as it is their theme function missing then. Otherwise let me know.
- This reply was modified 4 years, 6 months ago by Carlo Merrick.
- This reply was modified 4 years, 6 months ago by Carlo Merrick.
Forum: Fixing WordPress
In reply to: Appearance > Sidebars missing@webmastermh What’s the theme’s name that you have installed here?
- This reply was modified 4 years, 6 months ago by Carlo Merrick.
Forum: Fixing WordPress
In reply to: Enable registration to my account page layout messed upThat’s awesome @cbbr . Glad it is sorted. Have a great day.
Forum: Fixing WordPress
In reply to: Appearance > Sidebars missingHi there @webmastermh. Your sidebars should be under Appearance – Widgets and then sidebar should be on the right to add and remove widgets from it. Do you mean you don’t see a sidebar there?
Forum: Fixing WordPress
In reply to: Enable registration to my account page layout messed upHi @cbbr. What you can do is just help you css resize those blocks. Do you know how to edit your theme? On your WordPress Dashboard, on the left menu – Appearance – Theme Editor. On the right hand look for bootstrap.css. Copy all the code in that file and paste it into a notepad or some word processor you have on your computer and save the file somewhere you can find it easily, this is just to have a backup.
In theme editor on bootstrap.css, close to line 963 under .col-1 there is a line max-width: 8.333333%;, change the 8.333333% to 60%. This will change the block size of the left block. Also on line 971 under .col-2 the line max-width: 16.666667%, change to 60%. Click save at bottom. Go refresh your page(https://shop.cbbr.org.uk/my-account/). if you want the blocks bigger or smaller you can adjust that 60% on both those places. Let me know if this helped?
- This reply was modified 4 years, 6 months ago by Carlo Merrick.
- This reply was modified 4 years, 6 months ago by Carlo Merrick.
Forum: Fixing WordPress
In reply to: Problem with Page not found errorIt is a pleasure @pauldeasy. If the code doesn’t correct it then I agree with @corrinarusso to simply load the theme with it’s defaults. Easiest way to have it run without any issues.
Forum: Fixing WordPress
In reply to: Problem with Page not found errorThank you @pauldeasy. I see where the issue is. It’s when the code calls the property listing category “All” when the URL lands on
https://casafinders.es/forsale/
or https://casafinders.es/forrent/ so it shows no properties found.Yet when you click on the “All” category it does display the properties.
So I have an idea, unfortunatly only you can test it. This piece you sent me, I made a small change which I will show you here. Copy this code and paste it over the code in sort-listing-custom.php. Make sure to only replace the code you showed here from that file with this code and click save.
<?php $lastSlug = get_query_var('property_type'); $slug = get_post_field( 'post_name'); $fixslug = ''; switch ($slug) { case 'forsale': $fixslug = 'for-sale'; break; case 'forrent': $fixslug = 'for-rent'; break; default: $fixslug = ''; break; } ?> <div class="property-sort"> <div class="sort-title"> <span class="sort-by"><?php _e( 'Sort By: ', 'realexpert' ); ?></span> <?php $sortby=''; if($fixslug == ''){ $all = 'current'; }else{ $all = ''; $current = ''; } if(isset($_GET['view'])){ $view = '&view='.$_GET['view']; }else{ $view = ''; } $terms = get_terms( 'property-status' ); if(isset($_GET['type']) && $_GET['type'] != ''){ $type = $_GET['type']; }else{ $type = 'all'; } echo '<a href="'.get_site_url().'/properties">'.__( 'All', 'realexpert' ).'</a>'; foreach( $terms as $term ){ $linkSlug = ''; if($fixslug == $term->slug){ $current = 'current'; }else{ $current = ''; } switch ($term->slug) { case 'for-rent': $linkSlug = 'forrent'; break; case 'for-sale': $linkSlug = 'forsale'; break; default: $linkSlug = $term->slug; break; } echo '<a class="'.$current.'" href="'.get_site_url().'/'.$linkSlug.'/'.$lastSlug.'">'.$term->name.'</a>'; } ?> </div> <div class="grid-view hidden-phone"> <?php if((isset($_GET['type']) && $_GET['type'] != 'all') || (isset($_GET['sortby']) && $_GET['sortby'] != 'all') ){ $view = '?type='.$_GET['type'].'&sortby='.$_GET['sortby']; }else{ $view = '?'; } ?> <a href="<?php echo get_permalink().$view.'&view=list'; ?>"><img src="<?php echo get_template_directory_uri().'/images/view-list.png'; ?>" /></a> <a href="<?php echo get_permalink().$view.'&view=grid'; ?>"><img src="<?php echo get_template_directory_uri().'/images/view-grid.png'; ?>" /></a> </div> </div>
On line 25 it calls “if($fixslug == “”)” which I simply changed to “if($fixslug == ”)” as single quotes and double quotes can make a difference in php. If this doesn’t do the trick then you can just paste your old code into this file again to restore it. I’m going on a hunch here. When you have saved it just refresh and test. Let me know how the test goes?
- This reply was modified 4 years, 6 months ago by Carlo Merrick.
Forum: Fixing WordPress
In reply to: Problem with Page not found errorHi there @pauldeasy. There could be a small number of things wrong.I can troubleshoot with you? Let us start with what changed 2 weeks ago? Anything you changed or added on the control panel/hosting? Any updates you did?
Forum: Fixing WordPress
In reply to: site no longer loadingHi @qtoxtyej. Looks like your site is loading now? Could have been just a temporary message after an update or it was processing/loading and was interrupted.
- This reply was modified 4 years, 6 months ago by Carlo Merrick.
Forum: Plugins
In reply to: [Sitewide Notice WP] Trouble with caching?@thecueball thank you for the feedback. Can you clear the cache to test if that is the problem? It does seem like the plugin is not active on the live site at the moment?