Corporate & Agency website develop with #wordpress Developed By #procoder_shakil If You Need Any Type Website Contact me of @fiverr link:-https://www.fiverr.com/share/jR3Pyv
seen from China
seen from Canada
seen from United Kingdom
seen from Netherlands

seen from United States
seen from United States

seen from Australia
seen from China
seen from Netherlands
seen from Canada
seen from China
seen from China

seen from Syria
seen from Netherlands

seen from Denmark
seen from Mexico
seen from South Korea
seen from China
seen from United States
seen from Netherlands
Corporate & Agency website develop with #wordpress Developed By #procoder_shakil If You Need Any Type Website Contact me of @fiverr link:-https://www.fiverr.com/share/jR3Pyv
Critical Bug: Wordpress Plugin ThemeGrill Demo Importer, 200.000 Situs Jadi Target Hacker
Critical Bug: WordPress Plugin ThemeGrill Demo Importer, 200.000 Situs Jadi Target Hacker
Salah satu WordPress plugin ThemeGrill Demo Importer yang populer dan telah digunakan oleh lebih dari 200.000 web aktif terancam jadi target exploit para hacker wordpress yang dapat menyebabkan hacker dapat masuk ke administrator perlu authentikasi login.
Plugin yang rentan adalah ‘ThemeGrill Demo Importer’ yang terpasang otomatis pada theme wordpress gratis ataupun premium yang dijual oleh salah…
View On WordPress
ARE YOU TROUBLE TO YOUR HACKED WEBSITE OR GOOGLE BLOCKING
https://www.fiverr.com/share/zaE4v
A Casualty of the New Posting System
A Casualty of the New Posting System
I specifically set the most recent post – Another Channel I am Subscribed (#2) – to post on 11/28/2018 in the morning. Instead, it posted the darn thing immediately and then proceeded to act as if it was posted 7 days ago around the first one.
Major glitch!
Apparently, when I set it to post never took and it instead used the date that originally began writing the post (7 days ago).
This…
View On WordPress
For only $5, arifagri will fix all WordPress Errors bugs and Issuse. | I'm professional WordPress Developer ,I will help to fix your WordPress website Bugs,Errors and problems....Are you looking for an expert for your WordPress Problems, CSS | On Fiverr.com
Product - Category Name Bug in WordPress
If you have ever built an ecommerce website using WordPress than you might have seen the tricky first product-category name bug. e have developed a quick dirty hack to making first product names appear properly (Wp e-Commerce). The rest of the Web6S team said I should impart my Wordpress knowledge to the massesand reveal my secrets. So here goes nothing.
The problem: When clicking on a product category and navigating to it's respective list of products, the first product in the list would display the category name rather than the name of the product. After doing some research I foud a few answers. 1. Some found that the problem was in the page.php file in your theme folder. You can read about it at the beginning of this post: http://gasolicious.com/commerce-product-category-pages/
There are different places that you will find the post title in different themes, so it may take some looking around. That post covers some of them.
2. Since I was working with the Thematic theme, I found a solution where I could alter the post title. It was in functions.php - by putting in something like this: http://getshopped.org/forums/topic/thematic-fix-product-title-displayed-instead-of-category-title/ This repair method though would take a bit of tweaking since the fix deals with the opposite problem (trying to get the category name to display instead of the product title). Needless to say, this was not the fix for me.
3. Some found the solution by calling the product title twice in either: wpsc-products_page, wpsc-list_view where the product loop starts. For example turning this line: <?php while (wpsc_have_products()) : wpsc_the_product(); ?> into this: <?php while (wpsc_have_products()) : wpsc_the_product(); wpsc_the_product_title();?> That calls wpsc_the_product_title() once, then it get's called again when you call it to display the title.
4. Another solutions for some was removing this line of code; remove_filter('the_title','wpsc_the_category_title'); from: wpsc-includes/theme.functions.php
Well, to be honest, none of these solutions worked for me. I soon found myself resorting to an ugly hack that is a comprimize, but it gets the job done. Since the first product still linked it's correct product page, I just took the permalink of that title, stripped it down to the title portion and removed the dash. Voilla! Here is the code that I put in wpsc-products_page.php, it's place right befor calling the title:
<h2 class="prodtitle entry-title"> <?php if(get_option('hide_name_link') == 1) : ?> <?php echo wpsc_the_product_title(); ?> <?php else: ?> <a class="wpsc_product_title" href="<?php echo wpsc_the_product_permalink(); ?>"> <?php // cut the url into an array of strings separated by a "/" then remove "-" $link_line = explode("/", wpsc_the_product_permalink()); $title = str_replace("terrain", "", str_replace("-", " ", $link_line[5])); echo $title; ?></a> <?php endif; ?> </h2>
Hope this helps anyone who is experience similar problems with their WP eccomerce webiste.