elphi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 2.7 Visual Editor has Vanished on some PostsI did solve this problem by:
1. Disable Gears on my firefox.
2. Disable ALL plugins.
3. Clearing Cache.
4. restart firefox.
5. Visual editor now works.
6. Enable plugins.
7. Visual editor still works.Forum: Fixing WordPress
In reply to: Thumbnails not Generated on Ubuntu ServerThank you. Steve. It did solve the problem 🙂
Forum: Fixing WordPress
In reply to: WP 2.5 gallery won’t make some thumbnailsI have the same problem, thumbnails are not generated. Instead a full resized photo is inserted.
I have wordpress running locally at apache on fresh install ubuntu server.
Forum: Fixing WordPress
In reply to: Import RSS Feed AuthorI need to write ‘<?php’ and ‘?>’ on each line once this is use on the actual page. I use print_r($items) but it makes me more confuse. Sorry for being “noobish” 😐
I still can’t figure out how to pull the author of each post..
Forum: Fixing WordPress
In reply to: Show Category Parent namethanks! i’ve tried it but it didn’t work. i change $cat to $category because it would be place after this code:
$display_categories = array(22,15,25,26,29);
foreach ($display_categories as $category) { ?><?php echo(get_category_parent($category ,TRUE, TRUE)); ?>
it displays the current SLUG not the parent category.
Forum: Fixing WordPress
In reply to: Show Category Parent nameThat’s where i found the code posted above. It shows the Parent Name and the child categories. Is there in any I can show only the parent name?
Forum: Fixing WordPress
In reply to: How-to move to other webhostingthank you!
Forum: Fixing WordPress
In reply to: is_page multiple pagesi think the problem is those “parenthesis”. try this:
<?php if (!is_page(3)) || (!is_page(14)) || (!is_page(5)) || (!is_page(10)) || (!is_page(8)) || (!is_page(55)) || (!is_page(18)) { ?>
<?php if ($p > 0) { add_count($p);}?>
<?php } ?>
Forum: Your WordPress
In reply to: personal site with custom themeIm wondering what plugin did you use for the photo and video gallery? Very very neat 🙂
Forum: Your WordPress
In reply to: personal site with custom theme^ Do you have plans in making your blog theme available to your “fans”? =)
Forum: Your WordPress
In reply to: personal site with custom themeso neat! BTW thanks again for the help! 🙂
Forum: Themes and Templates
In reply to: IS there a more efficient way?THANK YOU! that helps! 🙂
Forum: Themes and Templates
In reply to: IS there a more efficient way?^ it works. thank you very much. appreciate it 🙂
one more question. how can i write a range value?
for example:$page_ids = array(115,123,124,125,126,127,128)
can i write it as
$page_ids = array(115,123:128)
but it didnt work? thanks.
Forum: Themes and Templates
In reply to: IS there a more efficient way?^it didn;t work T_T
Forum: Themes and Templates
In reply to: IS there a more efficient way?i would like to add in connection with the code above, could it be written in ->
<?php if( is_page(6) || is_page(XXX){?>wherein XXX are subpages of page(6). what would be the value/code of XXX?
Thank You.