Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Independent Publisher] Hide Certain Categories in BlogHey again,
In that case you’d need to edit the WP loop for the blog, you can read more on that here:
http://codex.ww.wp.xz.cn/Function_Reference/query_posts#Exclude_Categories_From_Your_Home_Page
And you’ll probably want to take a look at an article that Tom wrote recently:
http://tommcfarlin.com/exclude-categories-from-wordpress-loop/
This should help you achieve what you need. 🙂
Take care.
Forum: Themes and Templates
In reply to: [Oxygen] Remove right sidebar on a POST pageGlad I could help, have a great weekend! 🙂
Forum: Themes and Templates
In reply to: [Corpo] Project folder link on menu returning a blank boxI just see a message that states the home page will be finalised shortly:
http://monosnap.com/image/GjAxCaX6092CuEe7Z1lii3QH2cOpMv
What errors do you get with WP_DEBUG enabled?
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);Let me know what you find.
Take care.
Hey Barbie,
I was just checking in and notice you still don’t have any support tickets:
http://ww.wp.xz.cn/support/profile/barbie-d
We would really have loved the opportunity to get this fixed up for you, I appreciate it’s been some months now but if we can help then please let us know and open up a support ticket 🙂
Have a great weekend!
Forum: Reviews
In reply to: [Hustle - Email Marketing, Lead Generation, Optins, Popups] Doesn't WorkHey again.
We’d really love for the opportunity to turn your experience and this review around.
I couldn’t see any tickets opened, if you’re happy to work with us then I’d love to offer you a free account to our premium plugins and support as a thank you for taking the time and regardless of if you change the review or not.
After we’ve resolved the issue for you just contact us and we’ll get you that free account:
http://premium.wpmudev.org/contact/
Really looking forward to getting this resolved for you. 🙂
Have a great weekend!
Hey fpats,
I realise this review is a couple of months back now, apologies for not seeing it sooner. We tend to be more active in the support forums.
We’d really welcome the opportunity to turn this review around, if you could open a support ticket and let us work with you then we’d be incredibly grateful. We would even be happy to give you a free membership to all of our premium plugins regardless of if you change this review or not, simply as a thank you for working with us to identify the issue you had.
I’m hoping we can turn your experience around along with the review. 🙂
If you’re happy with this then please open a ticket so we can start working with you:
http://ww.wp.xz.cn/support/plugin/wordpress-popup
Have a great weekend!
Hey JohnReedie,
If there is anything we can do to help make this work for you then please let us know.
We’d love for the opportunity to turn this review around. 🙂
Take care and have a great weekend!
Hey Elja,
Hope you’re well! 🙂
Sorry to bother you again, as James mentioned our plugin should be working just fine with all of those themes now.
We’d love the chance to turn this review around and get a top rating from you. If you do still have any issues then it would be fantastic if you could open a support ticket so we can assess and help get this fixed up for you.
Looking forward to getting any issues you have resolved.
Take care.
Forum: Themes and Templates
In reply to: [MesoColumn] Unwanted link in footerHey again 🙂
Ah, I think I see what you mean now 🙂
How did you add the AA and AAM link, some code, theme options, something else, can you show me a screenshot especially code user?
You can upload images to a service like tiny:
And then give me the link.
I can see in the code there that the link duplicates over and over numerous times.
Take care.
Forum: Themes and Templates
In reply to: Metrodir template helpHey there.
For commercial themes you need to go to the author, unfortunately as per the forum rules we can’t support those here. Sorry
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Just quickly, for your overlap on the title you could try some CSS to add more of a margin:
div.title.category { margin-bottom:50px }All the best, take care 🙂
Forum: Themes and Templates
In reply to: [Oxygen] Remove right sidebar on a POST pageHey there,
You could use some CSS like this:
.singular-post #sidebar-secondary {display:none} .singular-post #content {width:100%}Hope this helps. 🙂
Take care.
Forum: Themes and Templates
In reply to: [MesoColumn] Unwanted link in footerHey there,
Are you talking about the copyright?
If so then this CSS:
.footer-left{display:none;}Or are you talking about the little smiley face under the footer area?
That little face is for tracking WordPress stats, it’s created through the Jetpack plugin. You need this visible in order for your stats to be counted.
You could reposition this with absolute, but you shouldn’t hide it.
Take care.
Forum: Themes and Templates
In reply to: [Corpo] Project folder link on menu returning a blank boxI’ve just been navigating around your site, everything seems fine there.
Are there any specific links that result in a grey page?
Or have you fixed this up now?
Cheers.
Forum: Themes and Templates
In reply to: WordPress Blog Themes on Regular WebsitesNope, it’s a WordPress theme with lots of code relevant to only WordPress.
It’s certainly possible to strip out just the design but it’s going to take you some work to get that done.
If this isn’t something you can do you would need to hire someone:
Take care.
Forum: Themes and Templates
In reply to: [MultiPurpose] Remove Second ButtonHey there,
If there isn’t a theme option in there then you can either edit the theme or us some CSS.
The CSS option:
.intro .btn-intro:nth-of-type(2) {display:none}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/
The original code is in the following file:
/multipurpose/homepage-top.php
You can remove this:
<a href="<?php echo esc_url(multipurpose_get_theme_opts('home_featured_btnurl1','#')); ?>" class="btn btn-intro"><?php echo esc_attr(multipurpose_get_theme_opts('home_featured_btntxt1','Buy Pro')); ?></a>Again it’s best to use a child theme.
Have a fantastic day! 🙂