DesignSmoke
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Responsive Age Verification] Popup cut off on mobile@jbhphx Thanks for the link, I was able to figure out what the issue is and I will release the fix in the next update, which may take some time. You can fix it in the meantime by adding the following code into your CSS stylesheet https://en.support.wordpress.com/custom-design/editing-css/
@media only screen and (min-height:450px) { .age-verification-main { top:0 !important; } }
Forum: Plugins
In reply to: [WordPress Responsive Age Verification] Change background to a pictureApologies for the late response. For anyone having the same question, you can add a CSS style to use an image as your background. This is a planned feature (to be added in the future).
div#age-verification { background-image: url('/wp-content/uploads/your-image.jpg'); background-size: cover; background-position: center center; }
- This reply was modified 5 years ago by DesignSmoke.
Forum: Plugins
In reply to: [WordPress Responsive Age Verification] Not Working Well with iPhoneSorry for the late reply, however I was not able to reproduce this issue with either the default plugin or your site (I assume you already fixed this). If anyone else has this issue, it’s likely to be a conflict with other CSS styles on your site – but please create a new thread if you recieve this issue.
Forum: Fixing WordPress
In reply to: How to force new heading to clear photo above itInstead of “clear:all” try “display: block”
eg:
.wp-image-block { display: block; }
Forum: Fixing WordPress
In reply to: Changing Sidebars Width with Evolve+ ThemeI’ve looked at their forums and it appears that they’re fairly fast at responding to most of the posts. Was it descriptive enough for them to help you? They have a direct contact link and even a wordpress support page (for the free version) https://www.ads-software.com/support/theme/evolve/
The theme you’re using isn’t an official wordpress theme, so you likely won’t get too much help in this forum.
Forum: Fixing WordPress
In reply to: I’m looking for a way to center align the Header MenuWhat @markrh said, however if you’re using a custom theme it may provide some options in the customization options. You can get to those by going to the admin page, then clicking on Appearance->Customize
Edit: I noticed you added the tag “REHUB CHILD THEME” – if there’s no option in the theme, you can try to contact wpsoul (the creators of rehub) and see if they can help you.
Forum: Fixing WordPress
In reply to: Changing Sidebars Width with Evolve+ ThemeTry the theme4press support forum, as they will be able to directly support their own product: https://theme4press.com/support-forum/
Forum: Fixing WordPress
In reply to: Random large TTFBs slowing down website@meisi11 Check your apache error logs and see if you can find which file/line the error is occurring in. What’s happening is that there’s an HTTP request (via curl) that’s blocking the loading of everything else. This is almost guaranteed to be problem with a plugin or theme.
You can also try disabling each one of your plugins (one at a time) and see when the delay stops, and you can narrow it down. It could also be your theme, so try that too.
Forum: Fixing WordPress
In reply to: wp-cron.php problem@batuhanguldemir Do you have the cron task that happened before the warning?
Forum: Fixing WordPress
In reply to: wp-cron.php problem@batuhanguldemir Is W3 Total Cache updated? It could be the source.
Forum: Fixing WordPress
In reply to: My WordPress Admin Gone Very SlowIf you delete those tables, you’ll probably lose all of your content.
Try one of these to clear the database:
https://www.ads-software.com/plugins/search/optimize+database/If that doesn’t fix it, you can install a caching plugin:
https://www.ads-software.com/plugins/search/cache/Forum: Fixing WordPress
In reply to: wp-cron.php problem@batuhanguldemir that means that something is supplying invalid data to the $cronhooks loop – I suspect it’s one of your plugins.
You can try to debug this and figure out what it is by adding this before line 111:
error_log(print_r($cronhooks, TRUE));
This will log all cron hooks to the error log – you can then see which one is printed before the error occurs.
Forum: Plugins
In reply to: [WordPress Responsive Age Verification] Feature Requests@eliedev This feature has been added.
@vipini Whoops, that’s my bad, I accidentally added a newline before the [L,R=301] and forgot the check for the url. Let me know if this works:
RewriteEngine On RewriteCond %{HTTP_COOKIE} ^.*wordpress_logged_in.*$ [NC] RewriteRule ^resources/?$ https://external.com/direct-download-link1 [L,R=301]
- This reply was modified 5 years, 6 months ago by DesignSmoke.
Forum: Plugins
In reply to: [WordPress Responsive Age Verification] Feature Requests@eliedev Good idea, and it’s very easy to add. I’ll put this on my todo list