ronaldvw
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Very weird issue with WordPressHi,
you are using a commercial theme, and by the looks of it, a commercial plugin for the booking form.
If you use a commercial theme or plugin and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.
Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
Forum: Fixing WordPress
In reply to: themes not workingHi,
see this article: https://www.ads-software.com/support/article/changing-the-site-url/
If you do not have access to the wp-dashboard, you can set the right URL’s via the
wp-config.php
file, or the theme’sfunctions.php
file, and (least recommended) by editing the database.Forum: Fixing WordPress
In reply to: Web is messed up completelyHi,
it appears that you are using a commercial theme. If you use a commercial theme or plugin and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.
https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266/support
Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
Forum: Fixing WordPress
In reply to: themes not workingHi,
in the source of the site, the url to the site is (in many places) wwww.aircomco.com. Note the 4 W’s. changing that to www should resolve quite some issues. Check your settings for the site url.
Forum: Fixing WordPress
In reply to: Website Code IssueHi,
when you say “showing the same message box”, what are you referring to? A screenshot would be helpful
And have you tried deactivating the recently activated plugins (since you specifically mention it, I am assuming that the issue started after that).
Did you check the plugin forum(s) for similar issues? Searched Google?
Do you have a backup that you can restore from the time the issue didn’t show yet?
When you deactivate all plugins, does this still show? If not, activate all plugins one by one and check, to find the culprit. You may also want to use the Health and Troubleshooting plugin: https://www.ads-software.com/plugins/health-check/
I hope these help to start diagnosis.
Forum: Fixing WordPress
In reply to: Bullet point blocks following textHi Ed,
using the webdeveloper tools, you will find:
https://vanweerd.com/screenshots/s20200416161513.jpg
In the above image, I removed the inline style, so the text can’t be seen. Reason for that is that the text is set to #fff (white) on a #fff background. We can see that this is caused by inline CSS (so not from a stylesheet). The “computed” tab on the right also indicates that the CSS in effect for this element is #fff.
Inspecting the html source of the site, you will find the css here:
https://vanweerd.com/screenshots/s20200416161913.jpg
For a site with a predominantly white background, setting the font color to white for the entire <body> area does not make much sense. It means that all elements need to overrule this.
Removing that css (seems to come from the Visual Composer plugin) will fix this issue.
https://vanweerd.com/screenshots/s20200416162534.jpg
Finally, always avoid using inline css. You now manually add the color black (#000) to all the single list items, whereas it takes just one line of CSS to accomplish that.
I hope this makes sense.
Forum: Fixing WordPress
In reply to: Bullet point blocks following textHi Ed,
it all looks fine to me, what exactly is the issue?
Forum: Fixing WordPress
In reply to: YouTube URL showing up in post titleHi,
without anything to look at, this is hard to debug. Can you add a link to your site, the page this concerns?
Forum: Fixing WordPress
In reply to: White Padding at TopHi,
it appears that you are using a commercial theme. If you need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.
https://themeforest.net/item/kleanity-minimalist-wordpress-theme-creative-portfolio/19133384/support
Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
Forum: Fixing WordPress
In reply to: Bullet point blocks following textHi,
if I recall well (and reading back), I advised to use CSS, and not inline styling using <span>’s or otherwise. The test pages you put up are no longer accessible, so it’s hard to tell.
Forum: Developing with WordPress
In reply to: Dont display post with no contentHi,
the trim will make sure that whitespaces are removed from the start and end of the content.
Post content with for example a space, an space will not be filtered out, as the post does contain a value. Trim will make sure that such posts will also be filtered.
Forum: Fixing WordPress
In reply to: Child theme – include a string to a PHP-fileHi,
I tried to use the wp_footer hook, but – it adds a text to a very bottom, while I need to put it in a specific location to add counters in the right position.
The default hooks in WordPress are not designed to manipulate content on your site.
If you want to edit content in the footer, most likely you will have to update the
footer.php
file. Using a childtheme, you should copy the version from the parent theme folder into the child theme folder, and edit the file in the child theme folder.Now I guess the only solution is to keep whole files in the child theme’s directory
I am not sure what you mean by that? You can download a sample child theme from the theme developers site: https://themonic.com/iconic-one/
For more specific theme support, you may also want to check their support forum: https://www.ads-software.com/support/theme/iconic-one/
Forum: Developing with WordPress
In reply to: Dont display post with no contentAlternatively, you can use a filter on the
where
clause, e.g.function my_filter_where($where = ''){ return $where .= "AND trim(coalesce(post_content, '')) <>''"; } add_filter('posts_where', 'my_filter_where');
Add this code to your child themes
functions.php
file.Hi,
it appears that you are using a commercial theme. If you need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.
https://themeforest.net/item/photollax-parallax-photography-template/19428451
Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
Forum: Fixing WordPress
In reply to: Child theme – include a string to a PHP-fileHi,
to add code to the <head> section, it is best to use a WordPress hook in your child theme’s
functions.php
.Example:
add_action ( 'wp_head', 'custom_head_code' ); function custom_head_code() { ?> <meta name="yandex-verification" content="blablacom" /> <?php }
or
add_action ( 'wp_head', 'custom_head_code2' ); function custom_head_code2() { echo '<meta name="yandex-v1erification" content="blablacom" />'; }
This assumes that the
wp_head()
action is called right before the closing </head> html tag in a theme template file.