Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

JPR-UK

Members
  • Joined

  • Last visited

  1. agree no need for plugin , and you are going roundabout on this but here goes. create a blog.php template file , then add this to the get_header tag : <?php /* Template Name: blog */ ?> <?php get_header(); ?> then just put your code [which is a get-posts tag with the category id you want ] and chose this template on your wp page Blog. for a more direct way you can simply install this plugin Quick Page/Post Redirect Plugin and then in Blog page , redirect it to category blog
  2. if you have FTP access , simply download all their files , and transfer it to your host , then grab their DB , open it and search-replace all the links to their site for e.g http://clients.com/ to http://mydomain.com then upload the db on you sql whatever u are using
  3. TwenyTen uses a loop.php which makes editing hell of a lot harder , you might need to edit the loop.php file.
  4. check here you'll see which pages using which template file , usually for homepage it's index.php or home.php
  5. Well , I see the post change , and it's working correct so far I can see , so I take it is fixed.
  6.    JPR-UK reacted to a post in a topic: How to change the wordpress login screen logo
  7. Yes , this index.html will load before the site , but still if they type in for e.g http://mydomani.com/about they will see the about page you can use this plugin http://www.cssjockey.com/freebies/custom-coming-soon-pages-wordpress-plugin you can edit the default or use a custom homepage there with or without the counter , plus it'll only shows the site to those who are loged in
  8. I dont see the error ... is it fixed ?
  9. Hi there. This is how wp calls in for template files , http://codex.wordpress.org/Category_Templates#What_Template_File_is_Used.3F so you simple need to add a tag.php template ;)or on your archive.php add an extra condition : <h1 class="page-title"> <?php if ( is_day() ) : ?> <?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?> <?php elseif ( is_month() ) : ?> <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date('F Y') ); ?> <?php elseif ( is_year() ) : ?> <?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date('Y') ); ?> <!-- from here --> <?php elseif (is_tag()) : ?> <?php single_tag_title('Currently browsing '); ?> <!-- till here --> <?php else : ?> <?php _e( 'Blog Archives', 'twentyten' ); ?> <?php endif; ?> </h1> Just a note : This code was from twenyten theme , you can simply add this extra tag to any other archive template
  10. I personally use conditional tags , but Richard introduced a plugin in the other post which solves the issue
  11. well if I am correct u mean the find by category part on sidebar , which is on asider-r.php we dont see it here , and if u are using wp_list_category for that , then simply exclude other from it , see here http://codex.wordpress.org/Function_Reference/wp_list_categories .or remove the other category if u dont need it , or set it's parent to no , so it wont show as a child of all tutorial category.
  12. well I agree u need a cart , but wp-ecommerce can do it , but I personally suggest magento
  13. you can simply add a meta-box to your post [custom field] and call it subtitle , then while listing your page for menu , call the subtitle there as well.
  14. well I dont see your php code but u need something like this ... <?php /* Template Name: product-List */ ?> <?php get_header(); ?> <ul> <? $catpost = get_posts("numberposts=-1&order=ASC&orderby=post_date&category=$current_id") ; foreach ($catpost as $post) { ?> <li> <?php setup_postdata($post); ?> <span><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span> </li> <?php } ?> </ul> or whatever code u want add there in the loop , then it'll pull the posts , $current_id is your category id
  15. I agree , magento is your best choice if you want to avoid un-necessary coding
  16. first : if ( is_page('about')) { // the page is "About", or the parent of the page is "About" will only works for page about if u need to apply this for it's sub-pages as well , then u need to write a function for it. second : <style type="text/css"> body { background-color:<?php echo $background;?> } </style> that appears before the conditional tags dude , so it echos an empty color and then checks which page your visitors are on , so technically it's useless , try adding it after your conditional tags and leme know if it works or not.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.