mark l chaves
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Footer ProblemHi @jedicolin
This link you posted https://www.railwayphotos.co.uk/wp-content/uploads/2021/03/Capture.png
is correct.
The link in your footer https://www.railwayphotography.co.uk/wp-content/uploads/2021/03/Capture.png
is wrong.
The link in your footer has the wrong domain (railwayphotography).
Change that to the correct domain (railwayphotos)
Here’s what it looks like for me when I use the correct URL.
To save time, try to always go to your WP media library, find the image, open the media attachment details page, and click on the Copy URL to clipboard button under the File URL.
Cheers!
Forum: Everything else WordPress
In reply to: can’t login to siteHi @sarsarheyworth,
That admin email address might be a default or ‘catch-all’ mailbox that your email hosting provider set up for you. You might want to check that too.
Anyway, HostGator has its own docs for password resets. Here’s the one for WordPress.
https://www.hostgator.com/help/article/how-to-reset-wordpress-password
You’ll probably want to follow their Manual Password Reset instructions which are the same as what I recommended in Method 3 earlier.
Good luck,
Mark
- This reply was modified 5 years, 3 months ago by mark l chaves. Reason: Forgot the link
Forum: Everything else WordPress
In reply to: can’t login to siteHi @sarsarheyworth,
If the email address isn’t working, do you remember your username?
You can log in or reset your password using the username if you know it.
If that doesn’t work, you’ll need access to your hosting cPanel area to get into your database. You can find out what the admin email is in the DB and change it there if you need to.
See Method 3 in this how-to doc.
https://www.wpbeginner.com/beginners-guide/how-to-change-the-wordpress-admin-email/
If you don’t know what any of this means, you can ask your hosting provider to help you 🙂
Thanks!
Forum: Everything else WordPress
In reply to: simple link photo galerry@claudedunnigan, all righty then.
Good luck to you 😉
Forum: Everything else WordPress
In reply to: simple link photo galerryHi @claudedunnigan,
Do you have a link to that list page and one of your gallery pages so we can have a look?
Thanks!
Forum: Everything else WordPress
In reply to: Problem with blurry images on SafariHello @silviaserpe,
I think I saw your post on the Avada forum too.
I can reproduce the blurry images when I hit your LOAD MORE button in Safari 14. And like you say, there are no blurry images in Chrome.
BTW, it takes me 2-3 clicks on the LOAD MORE for it to finally load more of the page (on both browsers).
So, I think the main issue is the
srcsetattribute on those images. For some reason, Safari (maybe WordPress combination) isn’t loading the correct size.How do I know this? When I remove the
srcsetattribute from one of your portfolio previews, it loads the original image resolution and it looks great.Suggestion: Ask the Avada support team if they have a hook to bypass the srcset for Safari only for your infinite scroll page(s) that have the issue.
It’s also best if you hit up the Avada support since .org forums don’t support premium themes and plugins.
I hope that helps.
Cheers!
Forum: Fixing WordPress
In reply to: Photo gallery problemsForum: Fixing WordPress
In reply to: Footer ProblemHi @jedicolin,
The link to the FB icon is throwing a 404 file not found error.
https://www.railwayphotography.co.uk/wp-content/uploads/2020/05/facebook-icon-png-32x32-4-e1615666112607.pngCan you make sure you copied/pasted the correct link? Go to your WP media library, find the image, open the details, and click on the Copy URL to clipboard button under the File URL.
Excellent. Glad you figured it out.
Thanks for sharing your solution with the community. That’s super helpful.
Cheers 🙂
We saw your support ticket on this subject. Thanks for that. And, we replied.
A brief summary: That script tag isn’t hardcoded perse. Just like almost anything in WordPress, you can change it. But, you need to understand and accept the consequences.
MonsterInsights doesn’t add the defer attribute because it isn’t recommended (refer to Google dev docs). Otherwise, you’d increase your chances of missing stats and causing errors if the gtag library isn’t loaded asap. Defer kinda defeats the purpose.
Check out the reply to your support ticket and please follow-up there if needed 😉
Cheers!
Hi @tomi85,
Can you try disconnecting instead? See the screengrab below.
https://a.supportally.com/dljQgv
Force the disconnect if you see a prompt come up.
Then, reconnect and see if the 403 goes away.
If that doesn’t work, you’ll want to give the support team a shout.
​https://www.monsterinsights.com/lite-support/
Forum: Fixing WordPress
In reply to: After setting a static frontpage, the website title is messed upHi,
I see the
site-titleCSS class for that page is a H1. The H1s on your site have a font-size of 65px. That’s pretty big.If you want to force your site title on that one page to match the other pages, you can try adding this custom CSS under Appearance > Customize > Additional CSS.
.site-title { font-size: 1.5rem !important; }This is a quick fix. For the long-term, I would ask the Elementor support team why this is happening.
Cheers 🙂
Hello @nomadarod ,
Do you mean something like this?
Here’s the CSS code I used as an example. Please tweak and refactor as needed.
.wp-block-group.alignwide.apropos_partie1.has-white-color.has-text-color.has-background { background-color: rgba(0,0,0,0.4) !important; }Shout if you have any questions 🙂
Hello @kae07 ,
MonsterInsights reads in data from your connect Google Analytics property. There needs to be data in your GA property for it to display in your MonsterInsights reports.
Did you log into your Google Analytics account and check your website’s property to see if there is data in there for that date range 2-31 January 2021?
If there’s data in your GA property for those dates, then in your MonsterInsights settings try to force a disconnect first, then reconnect? Here’s where to do that.
https://a.supportally.com/dljQgv
If you’re still seeing this issue afterwards, please reach out to MonsterInsights Lite support? Here’s the link.
https://www.monsterinsights.com/lite-support/
Thanks!
Forum: Everything else WordPress
In reply to: Check box and button valueHi @davecoledave,
I whipped up an example on CodePen that does this.
You should be able to tweak the JavaScript to add the HTML button ID that you’ll use in your code.
I.e., Change
#goto your button’s ID value.To use the JavaScript (with your tweak):
1. Copy and paste into the footer area of your site using the Insert Headers and Footer plugin or
2. Write a PHP action hook in your child theme’s
functions.phpfile to inject the JavaScript into the footer of your pages.Example code snippet for the
functions.php(method #2 from above).<?php /* Inline script printed out in the footer */ function my_add_script_wp_footer() { ?> <script> COPYJAVASCRIPTCODEHERE </script> <?php } add_action('wp_footer', 'my_add_script_wp_footer');- This reply was modified 5 years, 4 months ago by mark l chaves. Reason: Formatting