Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Stargazer] iframe hightHey there.
What happens if you set the height of the container div to the same as that of your iFrame?
Like this:
.embed-wrap{height:1600px}Looks like that might be a bit much but it’s what you set on the iFrame so I used that for the example.
Let me know how that goes. 🙂
Take care.
Forum: Themes and Templates
In reply to: Blank page when customizing WP themeHey there.
You could enable the WP_DEBUG constant.
http://codex.ww.wp.xz.cn/WP_DEBUG
To output the WordPress debugging information you can open your wp-config.php file and change:
define('WP_DEBUG', false);To:
define('WP_DEBUG', true);You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:
define('WP_DEBUG_LOG', true);Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:
define('WP_DEBUG_DISPLAY', false);You can also follow the flowchart here:
http://premium.wpmudev.org/blog/get-awesome-wordpress-support/
And finally, after that you would need to contact the original author of the theme with what you’ve found, unfortunately ww.wp.xz.cn can’t be used to support commercial products. We can only help with free ones here, sorry
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
In addition to the original author your host may be able to assist 🙂
Have a great day!
Forum: Themes and Templates
In reply to: Reizend ThemeYou’re most welcome.
Did you try out the CSS, just wondered if it did what you needed? 🙂
Take care.
Forum: Themes and Templates
In reply to: i need this themeHey there.
You’re not asking to basically rip it off are you?
Don’t think anyone here would help with that.
I did take a quick peek and noticed the theme is apparently made by these guys:
http://www.outsourcemantra.com/
If you like the style then maybe ask them develop something for you, it would cost. Or you could look for something similar:
Take care.
Forum: Themes and Templates
In reply to: Reizend ThemeHey there.
Always best to post under the themes support area otherwise the theme author may miss your post:
https://ww.wp.xz.cn/support/theme/reizend
Looking at the code briefly it seems it checks if the options set to use a logo and if not you get the title and desc.
Not sure about those settings there, it’s not a theme I use but you could do this with some CSS. If you want to remove the site name and description:
.site-branding{display:none;}Just the description:
.site-description{display:none;}Just the site title:
.site-title{display:none;}There is a chance that the theme has a CSS field in the options (if it works), if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Fixing WordPress
In reply to: Help – Fatal Error WarningHey there.
It’s probably best not to give your password out unless you totally trust that person or company.
I’m not sure how the moderators would feel about this, but if you wanted me to take a look then I can.
You need to get a working password for FTP and/or cPanel first though.
Failing that, ask your host to remove the plugin folder for you. They should be able to help quickly.
Take care.
Forum: Fixing WordPress
In reply to: Area for customizing is locked ?Hey again.
I’d love to garden, I love the idea of gardens, I love to see nice gardens, but sadly I’m as good at gardening as I am DIY and that’s not very good. ha ha.
You can change the colour with some CSS like:
#secondary, .site-header, .site-footer { background-color: #002000; }You can find the hex codes here in case that’s too dark:
http://www.color-hex.com/color/002000
Didn’t realise hit counters will still popular but alas it seems they may well be and there are a number of plugins for that:
https://ww.wp.xz.cn/plugins/tags/hit-counter
For the Facebook thing, I don’t know what ww.wp.xz.cn use but it looks like they might have just included it in the design rather than a plugin:
https://developers.facebook.com/docs/plugins/like-button
There are plugins also, like this one:
https://ww.wp.xz.cn/plugins/facebook-like-button/screenshots/
Hope this helps.
Forum: Fixing WordPress
In reply to: hacker created usersHey there.
Did you figure out how they did it yet?
Rogue plugin? Something in a theme? Dodgy past admin?
If you haven’t then maybe you’ll want to start there otherwise you could waste time fixing up the DB only to find they’ve done it again.
Checking plugins and themes are updated, no extra files, no extra code in files is a place to start. Sucrui could also help:
As for restoring, you don’t have a backup do you?
That would be the quickest. Else your issue is knowing which UIDs are genuine and which are fake. If they’re all admin you could run a query to remove them but just be sure to make an exception for your UID and any other genuine ones.
There is also a plugin that might help there:
http://ww.wp.xz.cn/plugins/bulk-delete/
Looks like a premium add-on in order to bulk delete members though.
Hopefully this will be of some use.
Take care.
Forum: Fixing WordPress
In reply to: HELP!! Links broken! Being appended to current URLHey there.
When I look in the code you have “” twice:
<a href="“https://www.zamplebox.com/subscribe/“"> <button type="button" class="btn-action medium">GET STARTED</button> </a>Other links appear fine on there. Check for the extras where you applied it.
Take care.
Forum: Fixing WordPress
In reply to: Help – Fatal Error WarningHey there.
The errors there relate to this plugin:
Instapress – http://ww.wp.xz.cn/plugins/instapress/
Basically it can’t find or open the file/folder. Looking at the project page there they say this:
Attention
At the moment Instapress won’t work on your blog. Want to help rebuilding this plugin? Follow this link: https://github.com/Liechtenecker/instapressSo I didn’t install or look further. It would be best to just login over FTP and navigate to your plugins folder:
/wp-content/plugins/
And then deleting the folder /instapress/, this will remove the error.
Let me know how that goes.
Forum: Themes and Templates
In reply to: [evolve] Hiding wordpress titlesHey there.
The slider:
#bootstrap-slider .carousel-caption h2 { display: none; }You will probably then want some padding on top of the white writing so it’s not butted up against it:
#bootstrap-slider .carousel-caption p { padding-top: 12px; }That should sort the slider, now for the titles. You say WordPress titles, do you mean the article titles?
And you don’t want any to show, not even in the article or anywhere?
If that’s the case then this should help:
.entry-title, .entry-title a { display: none; }That is very general CSS and will remove all titles and linked titles on your site. Not sure if that’s what you really want?
This CSS simply hides the items from display. They’re still in the code.
There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Orange] Remove Byline in Posts?Hey there.
You could hide this with CSS:
.post header p{ display:none; }You can add the CSS to your themes stylesheet.
If the theme is not one you made, then you may wish to use a child theme for this additional CSS. That way you’re protected when you come to upgrade.
Read more about Child Themes here:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/You can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Else it’s originally created in the theme’s function.php line 180. They check if the function exists first so we could do this a child theme using a new functions.php file:
function orange_posted_on() { }It’s basically a blank function so that it instead does nothing at all.
Hope this helps. 🙂
Take care!
Forum: Themes and Templates
In reply to: no themes availableSure. 🙂
When I’ve seen this in the past something was blocking connection. The last time it was a DNS issue preventing connection.
Thanks for reporting it just in case there was an issue on the WP server 🙂
Take care.
Forum: Fixing WordPress
In reply to: How to remove the "Post" word and box at the top of pages?Hey again.
You’re most welcome by the way 🙂
In your code, it’s right there:
<h2 class="art-postheader"><span class="art-postheadericon">Post </span></h2>Post is hard coded. Change that to:
<h2 class="art-postheader"><span class="art-postheadericon"><?php echo $title; ?> </span></h2>As it’s custom CSS you can just edit and remove it if you don’t need it. If you’re using the CSS I originally gave then you’ll want to remove that as well because you don’t want to hide the Post, you want it to show the Post Title which the code I just gave should help with.
Also, use Pastebin when post huge chunks of code like that. It’s easier to read. 🙂
Take care.
Forum: Themes and Templates
In reply to: add images within my bordersAre you familiar with Geocities, and how crazy sites were once made on there?
It was chunky borders, iFrames galore, an image for everything (even chasing the mouse across the screen). Actually it was rather fun but kind of annoying too. If you’re not sure what it was then if you search Google images you’ll see some examples of what I refer to.
I just like nice simple designs, fewer images is less to load and thus quicker although in most cases we’re probably not talking a huge noticeable amount unless of course you use some huge sized images and maybe lots of them. I’m not a fan of lots of things trying to grab my attention and using another image for a border runs the risk of doing that. But this isn’t a WordPress thing, this is an internet thing.
Sometimes it’s not even an image, using dashes or similar can make the page start to look like a game of space invaders but not in a fun game way. But if you like Space Invaders: http://www.somethinghitme.com/projects/canvasinvaders/ lol
I’m not saying it’s a bad thing, it’s more like a taste thing. If it’s done right and in keeping with the design then I’m sure it will look great.
Take care.