screampuff
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP on closed network server is trying to contact GoogleSo I’ve learned it’s from wp-cron.php
Any ideas what I can change so that this doesn’t happen? I assume it is reaching out somewhere to get the time?
edit: I simply added 127.0.0.1 redirect to my site’s URL in host file on server, can anyone advise if this should fix the solution and is an acceptable thing to do?
Forum: Plugins
In reply to: [Custom Login] My wordpress installation is trying to contact frosty.mediaThanks for the reply.
Those settings are all off but it is still reaching out.
Forum: Plugins
In reply to: [Achievements for WordPress] Tutorial?It’s pretty straight forward to get working. In the dashboard of your site you can add new achievements. In the users section you can grant them (must be an admin to do so).
Setting a featured image gives it a badge, but you will need to modify the code a bit to get the images to appear in the achievements list.
Forum: Plugins
In reply to: [Achievements for WordPress] Run only with standard WordPress themeIt should work with any theme, although on my theme I had to style the tables which was pretty simple, just a few lines of CSS.
Forum: Plugins
In reply to: [Achievements for WordPress] Is this plugin actively supported?Hello, the only support you will find is from the small community of users here, there is no official support and the author has not posted here in around 1 year.
Forum: Fixing WordPress
In reply to: Have a href over the li of menuI’m silly, just had to make the anchor tag display:block
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] What url to whitelist gmail?Thanks!
Forum: Plugins
In reply to: [Contact Form 7] Special mail tags for logged in user info?So I have no idea if this is by plugin design, but I was looking at the form and saw that I could make IDs and classes for the fields, and then could hide them with my theme’s CSS.
I chose to make the 2 fields I needed to hide “class:hide”, and by default they were hidden. Maybe the plugin hides this class by default, or perhaps there is something in my CSS that is already hiding this class, either way it works, and if it doesn’t right off the bat for you, you can just goto your theme’s CSS and make a rule like this:
input.hide { display:none!important; }Forum: Plugins
In reply to: [Contact Form 7] Default DateThank you.
Forum: Plugins
In reply to: [Achievements for WordPress] Paid / Pro VersionI would also be interested in a paid version, I’m using this for a company site that gives achievements based on work performance. All of my achievements are award rather than event and I feel that area could use some improvement. Some other simple things that are too hard to hack would be nice too, like the achievements award popup disappearing on an Ok button rather than after x amount of seconds. Also a way to clean out achievements from the DB, if you uncheck and awarded achievement it still shows in the DB.
Would also like a way to grant an achievement multiple times, and show an x5 next to it for example if the user got it 5 times.
Forum: Plugins
In reply to: [Achievements for WordPress] Achievement popup half missing for non-adminI ran into a similar issue when I blocked non admins from accessing /wp-admin/ through functions.php. I had to enable it again and they were getting the popup.
My guess would be there is some kind of capability that your regular users are missing access to, if you have some kind of role editor, your users need access to these capabilities: delete_achievement_progresses, edit_achievement_progresses, publish_achievement_progresses, read_achievements.
Forum: Themes and Templates
In reply to: [Virtue] Hide page title on entire categoryAwesome, thanks!
Forum: Themes and Templates
In reply to: [Virtue] Hide page title on entire categoryRemove the page title from the page itself. I know it’s just making the visibility hidden in CSS, but everytime I create a new newsletter I don’t want to have to edit the CSS and add a new page to the CSS code each time.
All of these pages fall under the same category, so is there a way I can hide the page titles on the page for every page in this category?
Forum: Plugins
In reply to: [Advanced Editor Tools] Visual mode – Text modeTinyMCE strips a lot more than just that.
It strips line breaks, even <div>%nbsp;</div> gets stripped.
It makes the text editor in wordpress virtually useless because if you ever switch to the visual editor it will distort your code.
Forum: Fixing WordPress
In reply to: How to re-order items in the admin bar?For clarification, when I add an item to user-actions, it appears below the “Log Out” link, and I would like Log Out to be the very last item.