apratherjr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Domain URL issuesI tested few browser… Most browsr were able to redirect http://www.example.com/home to http://www.example.com except for firefox… is this a familiar problems, any solutions?
Forum: Fixing WordPress
In reply to: WP Admin isn' recongizing JavascriptsHere let me rephrase… I have registered and define WP_enqueue in function.php. and here’s the code
add_action('wp_enqueue_scripts','ALP-scripts_function'); function ALP-scripts_function() { //theme options global $options; wp_enqueue_script('jquery'); // js wp_enqueue_script('hover', get_template_directory_uri() . '/asset/js/jquery.hoverIntent.minified.js'); } } ?>But this isn’t problem I am looking at because this code works perfectly on my localhost wordpress admin before I export it to live site.
When I returning back to localhost wordpress Admin, working on same theme again, the Javascript on theme doesn’t load up, I confirmed by switching another free theme with javascript by other developer. They don’t work either.
So the culprit is WordPress on localhost that is not detecting or loading javascript at all and I was hoping someone or you know the solution to it?
Forum: Fixing WordPress
In reply to: WP Admin isn' recongizing JavascriptsThanks for replying… I am not sure I get you entirely…
From my understating… I coded wp_enqueue_script inside function.php in order to get my theme to recognize Javascript. However, I don’t think its problem with my theme… It has to do with WP admin because I tried with several theme that have Javascript coded. none of them are working.
So more likely WP Admin is the culprit.
Forum: Localhost Installs
In reply to: XAMPP to FTP (Host site)Great! Thank you esmi.
Forum: Fixing WordPress
In reply to: How to code Category list in Custom Post Page {Need Help]Found solution…
Hell with this forum… I guess this isn’t good place to ask. Poor support here!
Forum: Fixing WordPress
In reply to: How to code Category list in Custom Post Page {Need Help]Was my question hard to understand? Are there any help here?
Forum: Fixing WordPress
In reply to: Is this possible???Is my question hard to understand? should I elaborate?
[topic closed as duplicate – please continue with your original topic http://wordpress.org/support/topic/how-to-code-category-list-in-custom-post-page-need-help?replies=1 ]
Forum: Fixing WordPress
In reply to: Categories or Tags in Custom post (PROBLEM!)forget about comments… I found solution!
Forum: Fixing WordPress
In reply to: Posts hack problem, PLEASE READ.that’s .css code called anchor pseudo-classes hover.
code i.e.
#link a:hover{ background:#656565, color:#ccc,)Forum: Hacks
In reply to: Custom Post Page NavigationFound solution… Thanks to Justin Carroll from this Forum
To learn about pagination for custom post visit
Here Good luck!
Forum: Fixing WordPress
In reply to: custom gallery post paginationActually, I found solution… I just added
$paged = get_query_var('paged') ? get_query_var('paged') : 1; $wpbp = new WP_Query(array( 'post_type' => 'portfolio', 'posts_per_page' =>'18' , 'paged'=>$paged ) );before the if have_posts, have-posts, the_post thing…Thank you anyway.
Forum: Hacks
In reply to: comment form styleYeah that’s what I thought… I was hoping there would be solution using CSS instead of js/jquery. Thank you for taking your time replying.
Forum: Hacks
In reply to: Post loop Codes… Need HelpAlright… duly noted… Learned a lot, Thanks for the rich information.
Forum: Hacks
In reply to: Post loop Codes… Need HelpAwesome… thank you for clarifying this up including link.
but why %i? why not $a or other letter, Or is it the standard protocol?
again, thank for everythin
Forum: Hacks
In reply to: Post loop Codes… Need Helpfirst, thank you for replying… I think I am getting picture.. but not entirely. Let have you look example code below, hope that helps explaining completely.
<?php if ( have_posts() ) : ?> <?php $i = 0; ?> <?php while ( have_posts() ) : the_post(); $i++; ?> <div class="portf"> <a href="<?php the_permalink() ?>" class="thumb" title="<?php the_title(); ?>"> <?php if (has_post_thumbnail()) : ?> <?php the_post_thumbnail(array(150,150)); ?> <?php else : ?> <img src="<?php bloginfo('template_url'); ?>/img/logoA.jpg" width="150" height="150" alt=""/> <?php endif; ?> </a><!-- permalink to thumbnail --> <div><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></div> </div><!-- .portf --> <?php if ($i % 6 == 0) echo '<div style="clear: both;"></div>'?> <?php endwhile; ?> <?php endif; ?>