Crock
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] css bugHello Guys I am also Having the same issue, Sometimes footer css are not applying. when i flush the empty cache. it works, fine. Now i need prevent the issue? please help me
Forum: Themes and Templates
In reply to: Sometimes Footer CSS doesnot applyI am using “W3 Total Cache” Plugin. from your words, issue comes from this plugin?
okay!! Thanks @thomas Griffin
Forum: Plugins
In reply to: [WordPress Category Archive] Change the URLI was Fixed.
Step1:-
go to plugins/wp-category-archive/wp-category-archive.phpChange $url value line 59
$url = home_url(‘/’);
$url .=”?category_name=” . $category;
$url.=”&year=”.$year_month_value;Step2:- Add the below code in theme function.php
add_action(‘init’, ‘category_rewrite’);
function category_rewrite() {
global $wp_rewrite;
$rule = ‘(.+?)/(\d+)/?$’;
//$rewrite = ‘index.php?year=$matches[2]&category_name=$matches[1]’;
add_rewrite_rule($rule,$rewrite,’top’);
$wp_rewrite->flush_rules();
}Final and Last Step:-
go to plugins/wp-category-archive/wp-category-archive.php
change the code return ($url); to
return (home_url(‘/’).$category.”/”.$year_month_value. “/”);Now accessing the https://www.example.com/category/year..
Forum: Themes and Templates
In reply to: How to rewrite the URLadd_action(‘init’, ‘category_rewrite’);
function category_rewrite() {
global $wp_rewrite;
$rule = ‘cat/(.+?)/(\d+)/?$’;
$rewrite = ‘index.php?year=$matches[2]&category_name=$matches[1]’;
add_rewrite_rule($rule,$rewrite,’top’);
$wp_rewrite->flush_rules();
}Successfully Changed the URL From
https://localhost/index.php?year=<year>&category_name=<catname>to
down vote
accept
Using the below code the following source urlForum: Themes and Templates
In reply to: How to rewrite the URLThanks for ur reply @ashiquzzaman. I am not using this url to entire the site, I know If we change the permalinks on dashboard. globally it will change, i am not interest to change in permalinks. please teach me how can reach this by rewrite_rule or htacess
Forum: Plugins
In reply to: [WordPress Category Archive] Change the URLPlease Help me. Anyone having the same issue. or anyone can have idea to help me,. i was suffered past 10 days please help me
Forum: Plugins
In reply to: [WooCommerce] Video Url not secure.so how can edit the post posted 3 weeks before?
Forum: Plugins
In reply to: [WooCommerce] Video Url not secure.how can edit ? there is no option to edit?
Forum: Plugins
In reply to: [WooCommerce] Video Url not secure.okay thanks Mike Jolley. I want delete this topic from the forum, because i googling my site it should list out. How can delete this topic? please help me
Forum: Plugins
In reply to: [AccessPress Social Icons] SSL Issueyeah i was updated the version, its fixed
Actually This is our site
https://lillydong.com/beta/lifestyle/#!enviragallery1626-1654We need to get like this below URL
https://www.randalford.com/OVERVIEW-PORTFOLIO/51Different these two, while slider is moving
.css(“transform”,”translateX(“+$(this).index() * -450+”px)”);
we need to add the above option in my site..?