Neotropic2023
Forum Replies Created
-
Forum: Plugins
In reply to: [Converter for Media - Optimize images | Convert WebP & AVIF] .htaccess codeNM
- This reply was modified 5 years ago by Neotropic2023.
Getting the same thing myself.
Thing is working great otherwise. Noticing lightbox type stuff does not change URL’s. Which makes sense as it only targets src tags. So I tried to convert all 4 images I have and work with it from there. But got the same issue above.
Thanks
Der nevermind. I thought I had to use something like property-overview-customname.php. But really just need to make a copy of property-overview.php for search and custom view.
Forum: Plugins
In reply to: [Permalink Manager Lite] GET argumentsIt helped my problem! Thanks!
function pm_stop_redirect($request) { if(!empty($request['account'])) { $request['do_not_redirect'] = 1; } return $request; } add_filter('request', 'pm_stop_redirect', 999);
Forum: Plugins
In reply to: [WP Crontrol] Please fill this field out?OMG, I feel soo stupid. Friday was hectic day and did not realize it wanted AM or PM until today. So sorry for that! ALL IS GOOD!
Great Plugin by the way, thank you for this!
- This reply was modified 5 years, 10 months ago by Neotropic2023.
Forum: Fixing WordPress
In reply to: Problem in New Editor (Gutenberg)Since I have NO IDEA where start new topic is even at anymore. And took me going through who knows how many pages to even get here to the forums.
When I go to edit a page, ALL icons are broken on the left side. Half of them broken up top. Half of the collapse arrows do not appear. It is just a total mess to look at. So now you make us download ANOTHER plugin to go back to classic? Why?
The editor by no means displays added TinyMCE buttons properly. Unless you like to scroll all the way right to get to them.
I see no buttons from some of my plugins, like where Add Media is on Classic.
Edit page basically looks like Garbage.
How mine looks: https://neotropicworks.com/Capture.JPG- This reply was modified 5 years, 11 months ago by Neotropic2023.
Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] Replacing URL’s (in DB) when content in widgetYa, after thinking about it I feel it is something else. It will do it anyways, no matter what editor it is.
It is strange, I run Velvet Blues and my own. See URL’s changed in SQL. But when I go to edit the page… images are still http and not https! It only happens with images. Code I use is basically the same as Velvet Blues. Plus done this many times with or without that plugin.
I use this as they do not have it in theirs:
UPDATE wp_options SET option_value = replace(option_value, ‘https://oldurl.com’, ‘https://newurl.com’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
UPDATE wp_options SET option_value = replace(option_value, ‘https://oldurl.com’, ‘https://newurl.com’);
In any case, really only need to use the second. Just in case.
It changes it on all. Drafts, revisions ect… Just strange to see it not change when I go into the editor. Mind boggling. Not really all that bad. But when you have a client with 40 testimonials with images, each in their own block. Bah, daunting.
I will continue looking. This is not the problem, this plugin.
- This reply was modified 6 years, 9 months ago by Neotropic2023.
- This reply was modified 6 years, 9 months ago by Neotropic2023.
I am getting the same thing, noticed it Friday. I activate them, they stay activated. But then somehow deactivated the next day. The options, in some cases, stay. The individual settings for each section.
Noticed it on multiple sites. But when running on localhost, it keeps its settings.
- This reply was modified 6 years, 11 months ago by Neotropic2023.
Most recent WP. I always keep everything up to date. Not sure of their PHP. I do know I get warnings in WP. We tried getting them to upgrade it. We know how that can be sometimes getting a host to upgrade.
They are on a server not hosted with us. One of three out of our 20+. And only theirs does this.
Oh, and one last thing.
This line of code in function ‘render_public_slides()’ on metaslider.class.php
$html[] = '<!-- MetaSlider -->';
Gets outputted as:
<p><!-- MetaSlider --></p>
LOL, that bothers me. Stickler with spacing. And dislike unneeded stuff being wrapped in praragraph tags.
Could just do this:
$html[] = '</div><!--// MetaSlider-->';
Mere formatting suggestion as removing auto paragraph is not catching this for some reason. And I tried sooo many things.
No idea what is going on on this site. I just added CSS to hide the duplicates. Curious to know why it is adding the second class, which seems to trigger the second set of navigation.
- This reply was modified 7 years ago by Neotropic2023.
Noticing on the site above, the class has “rslides rslides1 rslides2” while another site I am testing has “rslides rslides1”
Tested it on another site. Should have done that first. Seems it is only happening on this website. Looking into further.
Not sure if you resolved it, gap looks fine from here.
This will push it up some:
.page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; }
to
.page-content, .entry-content, .entry-summary { margin: 0; }
Then
.header-image { margin: 0 0 20px; }
to
.header-image { margin: 0; }
For just homepage…
.home .header-image { margin: 0; } .home .page-content, .home .entry-content, .home .entry-summary { margin: 0; }
You also have this above that logo:
<p><span style="color: #ffffff;">bookkeeping</span></p>
Play around to suite your needs.
Adding that CSS and removing that code actually puts your logo flush up to the header image. Adding CSS and leaving code, it looks good.
Best thing to do is open your browser It will show you the CSS of the selected element. Play around in that to get what you want, then paste changes in Additional CSS or something.
- This reply was modified 7 years ago by Neotropic2023.
Forum: Themes and Templates
In reply to: [Panoramic] Adjust padding below Navigation MenuFor your homepage:
.page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; }
to
.page-content, .entry-content, .entry-summary { margin: 0 !important; }
- This reply was modified 7 years ago by Neotropic2023.
library/template-parts/header-image.php I believe.