mark l chaves
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Featured ImagesHi @tsbweb,
Glad that worked out for you :-).
Regarding your new issue: I took a quick look at that page. It’s not obvious to me why those thumbnails/previews are not responsive. I recommend you consult your theme’s documentation or support channels for that specific issue.
It’s also good practice to open a new thread for every new issue so your issues have more visibility and relevance.
Since your original query is answered, please resolve this post.
Thanks!
Forum: Fixing WordPress
In reply to: Change WordPress logo on post editorHi @hcmendez ,
You’re welcome.
Good question. I don’t know of that plugin. Have you asked the plugin’s author or support forum?
Thanks!
Forum: Fixing WordPress
In reply to: Change WordPress logo on post editorThen you would put these customisations in your parent theme files. The next time you upgrade your theme, these changes could/will vanish. Hint: always use a child theme if you are adding custom code.
BTW, there’s a small typo in the functions.php code above. Here’s the correct line (changed amy_ to my_).
add_action( 'admin_enqueue_scripts', 'my_child_admin_css' );Forum: Fixing WordPress
In reply to: Featured ImagesHi @tsbweb,
I’d check your theme settings first to see if you can do this through the UI if you haven’t yet. If you need custom CSS, this worked for me.
.entry-featured { width: 525px; /* Tweak as needed. */ }Forum: Fixing WordPress
In reply to: Change WordPress logo on post editorHi @hcmendez,
Try adding these to your child theme files.
/** * admin-style.css */ /** Custom Logo for the Admin Pages */ #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before { color: transparent ; background: url(http://something.local/wp-content/uploads/2020/07/icon-72x72-1.png) no-repeat scroll 0 0 / 100% auto !important; }/** * functions.php * * Enqueue an admin style sheet only on the edit post page. * * References * - https://developer.wordpress.org/reference/functions/get_current_screen/ */ function my_child_admin_css() { $currentScreen = get_current_screen(); if( $currentScreen->id === 'post' ) { wp_enqueue_style( 'child-admin-style', get_stylesheet_directory_uri() . '/admin-style.css', false, '1.0.0' ); } // if } add_action( 'admin_enqueue_scripts', 'amy_child_admin_css' );- This reply was modified 5 years, 11 months ago by mark l chaves. Reason: Formatting
Forum: Fixing WordPress
In reply to: Footer questionHi @sarahb1963,
Please make sure you try other variations of strings. E.g., Perrysburg, Suite NN, etc.
Anyway, it might be in the DB since you are getting hits on SQL files? Maybe those SQL files are exported backups?
Have you tried running the Better Search Replace plugin? It’s too bad this plugin hasn’t been updated in a year. But, it’s been my go-to plugin for searching the DB or you can run SQL queries via phpMyAdmin if that’s better for you.
Forum: Fixing WordPress
In reply to: Your theme does not call wp_footer()Forum: Fixing WordPress
In reply to: Blog page content not display properlyHi @avsion,
Question. What do you mean by “merging”? Are you referring to
margin?Have you tried the Avada forum or Avada support yet? Avada is a premium theme and it’s not supported in this forum.
Good luck!
Forum: Fixing WordPress
In reply to: Footer questionHi @sarahb1963,
There are a couple of ways I would try to find the address:
1. Look in your theme or child theme functions.php.
2. Look in footer.php file.
3.cdto your theme(s) directory Rungrep "South Boundary" * -r | moreon the command line.
4. If you use VS Code, open the theme(s) directory and search on “South Boundary”.Good luck!
Hi @wpejay,
I’m sorry. I couldn’t reproduce the issue. My sticky header is showing up fine on scroll-up with Landing page mode on (expected behaviour).
See the screengrabs on GitHub for more details.
I’m going to close this thread. If you are still experiencing this, feel free to open a new support thread with maybe more information on how to reproduce or what other plugins you have that could be interfering with Hide and Seek Header.
Thanks!
Sorry for the delay, Adrian.
I posted a new issue on GitHub.
I’d like to do the following:
1. Reproduce the issue in my local dev.
2. Try to fix it so it behaves as originally intended.If the fix is feasible and is implemented, I can entertain your additional setting suggestion as an enhancement. I’ve thought about doing this before, but at the time it was out of scope and didn’t make sense because the whole point of this plugin is to hide the header on scrolling down. BTW, I see this same functionality (that Hide and Seek provides) on many popular sites I visit these days lol.
Thanks for your feedback.
Forum: Installing WordPress
In reply to: What’s the right way to set up a local WordPress install?Agreed. Local by Flywheel is like butter—super slick.
Hi @wpejay,
Please upgrade to version 1.3.0 when you have a moment. Let me know how it works for you.
mark
Forum: Fixing WordPress
In reply to: Problems on Displaying BlogpostHi,
After clicking on Older Entries, I see a listing page come up but there’s a slider or part of a blog post trying to come up on top of the listing. It looks like some kind of overlay. I don’t know what would cause that.
DIVI is a premium page builder. The good folks and Elegant Themes are the best-equipped people to support DIVI since it’s their product. Please reach out to them.
https://www.elegantthemes.com/contact/
On another note, it was a bit painful to try to diagnose the issue, because one of the images in your slider is a whopping 8 MB. I highly recommend you optimise your images so they are 100 KB or smaller. Your page will load faster and it will be easier for people to help you.
Best of luck!
Forum: Fixing WordPress
In reply to: black boxes, empty spaces on my painting galleryInteresting. I’m not sure what’s causing those gaps between your gallery thumbnails.
I recommend bringing up this issue with your theme’s author.
If you need a quick fix, you can try add the following custom CSS to your page or site.
#gallery { display: flex; /* Use !important if needed. */ flex-wrap: wrap; }I tested this on your page and it works.
This CSS uses the CSS3 flexbox layout. It’s a more up-to-date way of displaying grids like yours. The way your theme is displaying your gallery is a bit dated.
Good luck!