t

Beautiful Illustrations of Lovely Places by Darya Shnykina

En ces temps de confinement, l’heure est à l’évasion de l’esprit. Nous vous proposons aujourd’hui de découvrir le joli travail de l’illustratrice russe Darya Shnykina. Elle est l’auteure d’une série de créations intitulée Places I’d Love To Live In.  Elle a imaginé représenter d’adorables petites maisonnées solitaires en pleine nature. Des petits havres de paix où chacun […]




t

Marvelous Aerial Pictures of Salt Pans in Australia

En Australie, les paysages photographiés sont toujours un régal pour les yeux. Le photographe allemand Tom Hegen nous offre des clichés aériens à couper le souffle. Il nous emmène en Australie occidentale à la découverte des lacs salés. Ses plans d’eaux suivent en réalité les traces des anciens systèmes fluviaux. La région a été façonnée par le climat […]




t

Wildlife in Patagonia Captured by Konsta Punkka

En 2016, la route du photographe finlandais Konsta Punkka croisait celle de deux pumas. Il se situait alors au cœur de la Patagonie, au Chili, dans le vaste parc national Torres del Paine. Spécialiste des clichés d’aventure et d’animaux dans leur habitat naturel, le photographe a passé une dizaine de jours à suivre les félins pour tirer de […]




t

Clever Pictures of Toy Cars on a Cardboard Road

Durant cette période de confinement, les créatifs rivalisent d’ingéniosité pour rester créatifs et continuer leur pratique. C’est le cas du photographe Florian W.  Mueller. Contraint de rester chez lui avec son fils de 6 ans et donc dans l’impossibilité de voyager pour réaliser des projets, il a opté pour la création à domicile. Lorsque son […]




t

The Lockdown Illustrated by Mariano Pascual

Cette période inédite de confinement a inspiré de nombreux artistes, dont fait partie l’illustrateur Mariano Pascual. L’artiste argentin établi à Barcelone a traduit en images les sentiments flous, désordonnés et un brin anxiogènes induits par la pandémie. Stocks de papier toilette, télétravail et laisser-aller derrière les portes closes de son domicile… À travers une série de visuels […]




t

Through The Lens of Photographer Jessica Antola

Au carrefour de la mode et de l’image documentaire, Jessica Antola photographie des tissus, mais avant tout des personnes. Elle construit avec eux une relation de confiance et en retour, ses modèles lui offrent une petite fenêtre ouverte sur leur vie. Tout d’abord, vous avez travaillé dans l’industrie de la mode. Ainsi, votre amour pour […]





t

The New Theme

So I want to hear some feedback! Please let me know what you think so far. The theme is based on Matt Brett’s THiCK theme which you can find over at WooThemes.com. I modified the theme to fit my needs, and looks like I have to debug some issues now that the site is live. […]

The post The New Theme appeared first on WPCult.






t

Disable caching of your site or post

I talked about Disabling search engine on search pages in a previous post using the meta tag. Today lets go over the web bots Cached copy of your site. If you are working on builder your blog, or have a temporary site up, use the following code: <meta name="robots" content="noarchive"> This will tell any bot […]

The post Disable caching of your site or post appeared first on WPCult.





t

Google Highlight

For those looking for a way to optimize your search results on your WordPress blog. You may want to check out the following plugin. Goolge Highlight It will highlight or colorize the background of any letter or word that you search for. Head over to the site to see it, or do a search on […]

The post Google Highlight appeared first on WPCult.




t

Echo custom fields in any category

Here is a neat trick. Say you want to show a custom field in you post or in a certain categories post. There is a simple code you need to write in order to accomplish this: <?php $image = get_post_meta($post->ID, "image", $single = true); ?> <?php if($image != '') : if(in_category(7)) { echo ''; } […]

The post Echo custom fields in any category appeared first on WPCult.




t

Wierd custom fields

I am not sure if this is from a pluigin error. But I suddenly have custom field names “atfemail_” and random letters and digits @ random numbers and digits dot com. hmm.. Any idea’s? I think it may be from the subscribe to comments plugin.

The post Wierd custom fields appeared first on WPCult.




t

Winner: Free Revolution Theme

I was just sitting in the back listening to Shayne Sanderson from Insctinct, who talked about their e-commerce plugin and a new plugin that released today.. Once he finished, Jason dug his hand in the ticket bucket and my ticket was called. I won a Pro Revolution Theme Pack from Brian Gardner. Totally sweet!

The post Winner: Free Revolution Theme appeared first on WPCult.




t

Twitter avatars inside your WordPress comments

Ricardo Sousa, who writes for Smashing Magazine created a great plugin called Twittar. This plugin will use someones Twitter Gravatar if their email address is not connected with a Gravatar. For more info check out the full post at Twitter Avatars in Comments: A WordPress plugin Image credit: Ricardo Sousa

The post Twitter avatars inside your WordPress comments appeared first on WPCult.




t

Display custom url if comment authors url is blank

Here is a nifty trick for your comments.php template. If someone comes to your site and leaves a comment but doesn’t leave a url back to there site, the default link that is shown in place of the php code comment_author_url is the current page link. That might not look good. So, here is a […]

The post Display custom url if comment authors url is blank appeared first on WPCult.




t

Creating a custom widget

Today let’s learn a simple quick trick on how to create a custom widget. For my example I will show you how I created my Showcase widget located in the middle, to the right of the posts. First under your functions.php file type in the following: <?php // Custom Widget function MyCustomWidget() { ?> <li […]

The post Creating a custom widget appeared first on WPCult.




t

Pulling custom fields from outside the loop

In the last post “Creating a custom widget” I showed you how to create a custom widget. Well in this post I will show you how I used my custom widget to display all post with a certain custom field from outside the WordPress loop. In the last post I used this tag: <?php include(TEMPLATEPATH […]

The post Pulling custom fields from outside the loop appeared first on WPCult.




t

Can't add pagination on WooThemes Thick Theme

Everything I have tried has led to nothing. And I have tried six way’s from Sunday to get my main posts to paginate. example one: <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('offset=1&showposts=' . get_option('woo_other_entries') . '&cat=-' . $GLOBALS['ex_asides'] . '&paged=$paged' ); ?> example two: <?php global $myOffset; global $wp_query; $myOffset = 1; $paged […]

The post Can′t add pagination on WooThemes Thick Theme appeared first on WPCult.




t

The launch of WordPress.tv

Hey, in case you are unaware, WordPress has launched a new site called WordPress.tv. Check out the full post at the WordPress.org blog. Or visit WordPress.tv …WordPress.tv is also now the place to find all that awesome WordCamp footage that was floating around the web without a home. See the presentations you missed and get […]

The post The launch of WordPress.tv appeared first on WPCult.




t

The WordPress Logo

For your information. The WordPress fonts are as follows: the old WP logo was Dante, the new one is Mrs. Eaves. You can also find the correct logo’s on WordPress.org.

The post The WordPress Logo appeared first on WPCult.




t

Limit the characters that display on the_title

Ever wanted to display the title of a post somewhere but limit the amount of characters that are shown? For instance, this post has a very long title, and if I were to use <?php echo the_title() ?> it would show as follows: Limit the characters that display on the_title. That may not fit well […]

The post Limit the characters that display on the_title appeared first on WPCult.




t

Search Unleased: A custom WordPress plugin

Most all WordPress theme’s use a a simple search form to search your site. But what it you wanted to search your whole site and not just your posts. Search Unleashed comes into the picture. Search Unleashed performs searches across all data, including that added by plugins. Some features of this plugin are: Full text […]

The post Search Unleased: A custom WordPress plugin appeared first on WPCult.




t

Revolution Two: Album theme

Benefits include the Album theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

The post Revolution Two: Album theme appeared first on WPCult.





t

Arthemia Premuim

Arthemia Premium is a magazine style theme that unleashes the power of WordPress, transforming it into a simple-yet-powerful CMS with the automatic thumbnail generation feature. A nice and elegant blend of a blog and a magazine. With numerous built-in features, Arthemia Premium will convert your old-fashioned WordPress blog into an amazing and powerful front-end. If […]

The post Arthemia Premuim appeared first on WPCult.




t

Contest: WP e-Commerce theme competition

The WordPress e-Commerce team are gearing up to announce a competition for the best WordPress e-Commerce compatible theme. The first prize is $1500 + any additional community donated funds that people throw into the prize pool kitty. The second prize is a new iPod. For the rules head over to Instinct

The post Contest: WP e-Commerce theme competition appeared first on WPCult.




t

Revolution Two: Agent Theme

Benefits include the Agent theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

The post Revolution Two: Agent Theme appeared first on WPCult.




t

Revolution Two: Black Canvas

Benefits include the Black Canvas theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

The post Revolution Two: Black Canvas appeared first on WPCult.




t

Revolution Two: Chrome Theme

Benefits include the Chrome theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

The post Revolution Two: Chrome Theme appeared first on WPCult.




t

Revolution Two: Church Theme

Benefits include the Church theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

The post Revolution Two: Church Theme appeared first on WPCult.




t

Goodbye to cforms II

If you are using the cforms II, you may want to head over to Mr. Seidel’s site for more info on the matter.

The post Goodbye to cforms II appeared first on WPCult.




t

cforms II now GPL compliant

Well, it was a long run, ok, only 24 hours when Mr. Seidel’s announced that he would pull the plug on further updates to the cforms plugin. But after consideration and many emails, he has released a update to a GPL compliant version of his plugin: 10.2.

The post cforms II now GPL compliant appeared first on WPCult.




t

WPZoom: WordPress related Firefox Addons

Firefox is regarded as the best Web browser in terms of extensions. It has hundreds of add-ons, which can be downloaded from here. Pavel Ciorici collected the most useful WordPress related Firefox extensions (addons) and compiled them on this post. photo by: Pavel Ciorici

The post WPZoom: WordPress related Firefox Addons appeared first on WPCult.





t

Revolution Two: TV Theme

Benefits include the TV theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

The post Revolution Two: TV Theme appeared first on WPCult.




t

WPRecipes: Get parent page/post title

If you use pages and subpages or posts and parent posts on your WordPress blog, it should be a good idea to display parent page/post title while on a child page. Here’s a code to do that job easily by the recipe man: WpRecipes. photo by: Jean-Baptiste Jung

The post WPRecipes: Get parent page/post title appeared first on WPCult.







t

How to Change Your iPhone's DNS Servers

Just like in Mac OS X, you can change the DNS servers on your iPhone. This can significantly speed up Safari and other iPhone apps that use the Internet. For a general introduction to DNS, and to learn why you would want to change the DNS servers on your iPhone, see How to Change Your Mac's DNS Servers.

Before we start, you should know a couple things about how iOS handles DNS. First, these instructions only work for Wi-Fi connections - iOS does not allow you to change the DNS servers when connected to cellular networks. Also, the changes are network specific, so you'll need to change the DNS servers every time you connect to a new wireless network. The good news is that iOS remembers the settings, so you won't have to do anything the second time you connect to a network.

Here's how to change your iPhone's DNS servers:

  1. From the iPhone's home screen, tap Settings.

  2. Tap Wi-Fi. The screen shown below appears. The available wireless networks in range of your iPhone appear, as shown below.

  3. Find your wireless network in the list, and then click the arrow. The screen shown below appears.

  4. Tap the DNS field.

  5. Delete the current DNS servers, and enter the new DNS servers. (If you enter more than one DNS server, be sure sure to separate the servers with commas.)
    • To use OpenDNS, enter 208.67.222.222 and 208.67.220.220
    • To use Google DNS, enter 8.8.8.8 and 8.8.4.4
  6. Test your new DNS servers to make sure they're working.

That's it! You've updated your iPhone's DNS servers!

Related Articles


Meet Your Macinstructor

Matt Cone, the author of Master Your Mac, has been a Mac user for over 20 years. A former ghost writer for some of Apple's most notable instructors, Cone founded Macinstruct in 1999, a site with OS X tutorials that boasts hundreds of thousands of unique visitors per month. You can email him at: matt@macinstruct.com.




t

Controlling AirPort Network Access with Time Limits

If you own an AirPort base station, you can use the Timed Access feature to control the days and times when users access the Internet. This could come in handy in a variety of situations. For example, if you own a cafe and provide free wi-fi access, you can configure the AirPort to block all access to the Internet when your business is closed. And if you have children, you can set time limits for specific devices in your home.

There are two ways to use the timed access feature. You can create a default allow policy to allow all devices to access the Internet at any time, and then specify custom schedules for specific devices. Or you can create a default deny policy to prevent all devices from accessing the Internet according the schedule you specify, and then exempt specific devices by creating custom schedules.

Here's how to control AirPort network access with time limits:

  1. Open the AirPort Utility application. (It's in Applications → Utilities.) The window shown below appears.

  2. Click the AirPort Extreme's icon. The status pop-up window appears.

  3. Click Edit. The settings window appears.

  4. Select the Network tab. The window shown below appears.

  5. Select the Enable Access Control checkbox.

  6. Click Timed Access Control. The window shown below appears.

  7. Select the Unlimited (default) option. By default, this allows all of the devices connected to your AirPort to access the Internet all day, every day, but you can change this to block Internet access for all devices (except the ones you specify later) during the times you set.

  8. If you'd like to limit the days and times that a specific device can access the Internet, click the + button under the Wireless Clients field. The window shown below appears.

  9. Enter a name for the device in the Description field.

  10. Enter the device's MAC address in the MAC Address field. You can use the following tutorials to find the device's MAC address.

  11. Use the + button under the Wireless Access Times field to create a schedule for this device's Internet access.

  12. Once you've added all of your devices and customized the schedules, click Save.

  13. Click Update. The AirPort will restart to apply the changes.

Congratulations! You have successfully set time limits for the devices connecting to your AirPort network. The schedule you created is effective immediately.

Meet Your Macinstructor

Matt Cone, the author of Master Your Mac, has been a Mac user for over 20 years. A former ghost writer for some of Apple's most notable instructors, Cone founded Macinstruct in 1999, a site with OS X tutorials that boasts hundreds of thousands of unique visitors per month. You can email him at: matt@macinstruct.com.




t

Tell Your iPhone to Forget a Wireless Network

When you connect an iPhone to a wi-fi network, the iPhone remembers that network and will automatically attempt to connect to it in the future. This is a great feature for wi-fi networks you trust and use frequently. But mistakes happen. If you connect to the wrong network at a coffee shop, your iPhone will automatically attempt to join that network every time you visit the coffee shop in the future. And if the password for a known network changes, your iPhone might have trouble connecting to it.

What's the solution? Telling your iPhone to forget the wi-fi network. Forgetting a network will remove the network's password and prevent your iPhone from joining it automatically in the future.

Here's how to tell your iPhone to forget a wireless network:

  1. From the home screen, tap Settings.

  2. Tap Wi-Fi. The window shown below appears.

  3. Locate the wireless network you want the iPhone to forget, and then tap the blue arrow next to the network name. The window shown below appears.

  4. Tap Forget this Network. The iPhone will forget the wireless network.

You have successfully told your iPhone to forget the wi-fi network. The iPhone will not attempt to connect to the network in the future. And if the network required a password, that password has been forgotten.

Related Articles


Meet Your Macinstructor

Matt Cone, the author of Master Your Mac, has been a Mac user for over 20 years. A former ghost writer for some of Apple's most notable instructors, Cone founded Macinstruct in 1999, a site with OS X tutorials that boasts hundreds of thousands of unique visitors per month. You can email him at: matt@macinstruct.com.




t

Make Your iPhone Ask to Join Wi-Fi Networks

By default, your iPhone automatically connects to known wi-fi networks. (To stop an iPhone from automatically connecting, you can tell your iPhone to forget a wi-fi network.) But what happens if you take your iPhone to a new location? You'll need to manually connect your iPhone to a wi-fi network.

That's a hassle. But if you have the foresight and inclination, you can save yourself time in the future by making your iPhone ask to join wi-fi networks when no known networks are available. Instead of having to open settings to join a network, you'll be able to easily select a network from an on-screen prompt.

Here's how to make your iPhone ask to join wi-fi networks:

  1. From the home screen, tap Settings.

  2. Tap Wi-Fi. The window shown below appears.

  3. Move the Ask to Join Networks slider to the On position.

  4. The next time you're in a location with no known networks, your iPhone will prompt you to connect to an available wi-fi network, as shown below.

In the future, this prompt will be displayed when no known networks are available. (To actually see the prompt, you'll need to do something that requires network access, like try to check your email or open a webpage.) To connect to a wi-fi network, select a network and enter a password, if one is required.

Related Articles


Meet Your Macinstructor

Matt Cone, the author of Master Your Mac, has been a Mac user for over 20 years. A former ghost writer for some of Apple's most notable instructors, Cone founded Macinstruct in 1999, a site with OS X tutorials that boasts hundreds of thousands of unique visitors per month. You can email him at: matt@macinstruct.com.




t

How to Connect an iPhone to a Wi-Fi Network

If you're a new iPhone owner, one of the first things you'll want to learn how to do is connect your iPhone to a wireless network. That's because there are certain times when your cellular data connection just won't cut it, even if you're lucky enough to have an unlimited data plan. Using Facetime, downloading content from iTunes, and even surfing the web can be painfully slow without a wi-fi connection.

Fortunately, it's a relatively simple process to connect an iPhone to a wi-fi network. Just be sure to commit this process to memory, because it's something you'll need to do over and over again, unless you set your iPhone to automatically detect and prompt you to connect to wi-fi networks.

Here's how to connect an iPhone to a wi-fi network:

  1. From the home screen, tap Settings.

  2. Tap Wi-Fi. The window shown below appears.

  3. Verify that the Wi-Fi slider is in the On position. This allows your iPhone to detect and connect to wireless networks.

  4. Tap the wireless network you want to join. If the network is not password protected, the iPhone will connect immediately.

  5. If the wireless network you selected is protected with a password, you will be prompted to enter a password, as shown below. Enter the password and then click Join to connect to the network.

  6. If the wireless network you selected is protected with a captive portal, you will be prompted to enter a password, or a username and password combination. These are increasingly common in hotels, airports, and on college campuses.

Congratulations! Your iPhone is now connected to the wi-fi network. From now on, the iPhone will automatically connect to this network when it is in range. If you accidentally selected the wrong wi-fi network, you can tell your iPhone to forget it.

How to Tell if Your iPhone is Connected to a Wi-Fi Network

There are several indicators you can use to verify that your iPhone is connected to a wi-fi network. The easiest way to visually check to the status bar in the upper-left corner of the iPhone's screen. The wi-fi symbol is displayed when you are connected to a network, as shown below.

If you're curious about which wi-fi network the iPhone is connected to, open the Wi-Fi settings. The network name is displayed in the sidebar, and a checkmark is also displayed next to the connected network, as shown above.

Related Articles


Meet Your Macinstructor

Matt Cone, the author of Master Your Mac, has been a Mac user for over 20 years. A former ghost writer for some of Apple's most notable instructors, Cone founded Macinstruct in 1999, a site with OS X tutorials that boasts hundreds of thousands of unique visitors per month. You can email him at: matt@macinstruct.com.




t

Hatchet

Hatchet has grown from the status of a bright idea to a fully realized solutions provider, connecting businesses in Perth with a unique set of comprehensive web services across app development, software development, web design, hosting and databases. We’re digital … Continued

The post Hatchet appeared first on WeLoveWP.





t

Hongo – The Ultimate WooCommerce WordPress Theme

Hongo is a creative and responsive, search engine optimised and fast loading, highly flexible and powerful, feature-rich and easy to use WooCommerce WordPress theme which comes with all necessary settings and tools which will help you to create a great … Continued

The post Hongo – The Ultimate WooCommerce WordPress Theme appeared first on WeLoveWP.