fatty123
Forum Replies Created
-
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] CSS style is offThanks, I got it working, the problem was originated from the overlapping copies of the filter plugin. Once I removed it and everything is working again.
Forum: Fixing WordPress
In reply to: Create custom post type without creating a page template?Thanks for the answer ??
Forum: Fixing WordPress
In reply to: Create custom post type without creating a page template?Sorry I didn’t make myself clear enough, what I meant was whenever I created a custom post type (eg videos) and in order to display all the videos under my custom post type I need to create an empty page call mydomain.com/all-videos to display the posts. The reason I find this hacky is whenever I create a new custom post type I need to create a new empty page to hold the post type. Another disadvantage is that client has a tendency to either edit the slug or just delete the entire page, wouldn’t this be problematic?
Forum: Fixing WordPress
In reply to: dropdown not working in IE@kmessinger is right, outside the body tag, try placing it within the body tag.
I also notice because of the script tag, your doctype declaration disappear in chrome although it stills display fine….and IE definitely can’t read that….
In your css I see that ur navigation is using display:inline-block for all its alignment and doctype declaration is crucial over here….
Forum: Fixing WordPress
In reply to: Developing WordPress Theme with plugins installed?Thanks again for the tips :), I think for core plugins like ‘advance custom fields’ or ‘Buddy Press’… I will try embed into my function theme.If it gets too problematic then will just leave a required plugins notice for them. Other non essential plugins like slider or social networks button will leave it as a recommended plugins.
Forum: Fixing WordPress
In reply to: Developing WordPress Theme with plugins installed?Thanks for the info Josh, I think the best way for now is reverse engineer the plugins like you mentioned. Hope wordpress will look into this and develop a better way to add plugins into our theme.
Forum: Fixing WordPress
In reply to: dropdown not working in IEhow did you get the rollover to work in the first place? Did you code it yourself or copy and paste script online?
Forum: Themes and Templates
In reply to: WordPress "->" ?Thanks =)
Forum: Themes and Templates
In reply to: Difference between ABSPATH and TEMPLATEPATH?Thanks for the explanation between ABSPATH and TEMPLATEPATH, but now I have another question…
Let say the directory of my WP installation is:
https://www.hello.com/wordpress/what differences will it makes if I use,
include_once(ABSPATH . ‘wp-content/themes/posttypes.php’);
and
include_once($url = site_url(‘/wp-content/themes/posttypes.php’, ‘https’); echo $url;);Forum: Themes and Templates
In reply to: blog info doesn't workThank you for the explanation =)
Forum: Themes and Templates
In reply to: blog info doesn't workThank you for the solution I finally got it working,
. get_stylesheet_directory_uri() . and .get_bloginfo(‘template_directory’).
both works well, but for the sake of clarification, can you explain why
bloginfo(‘template_directory’) does’t work? I thought all 3 of them are the same thing ?Forum: Fixing WordPress
In reply to: adding unique id to each page?Oh i just try it and it works also!! manay thanks =)
Forum: Fixing WordPress
In reply to: adding unique id to each page?Thanks for the answer, my background image finally works. =), but one more thing i would like to ask, is body_class capable of editing div reside within the body as well?
Forum: Fixing WordPress
In reply to: adding echo in betwennThanks =)
Forum: Fixing WordPress
In reply to: adding echo in betwennthen how about template directory?:
<?php echo bloginfo(‘template_directory’); ?>is it correct or wrong? the reason I’m asking is because I saw an online tutorial where the person add echo for all his blog info to refer to his image source.
<img src=”<?php echo bloginfo(‘template_directory’);…… ?>”>Yet he preview in browser and everything works fine. So I just wondering if it is the same thing or not ><