Abhijit Rakas
Forum Replies Created
-
Forum: Plugins
In reply to: [Blogger To WordPress] The redirection takes you to the homeHi mygeek911,
No need to set it manually. You just need to import your blog XML file of your blogger.com blog using WordPress default Blogger import option. (Blogger import option available on top of Tools > Import page on your WordPress site.)
During importing XML WordPress by default set that meta for you.
Thanks,
Forum: Plugins
In reply to: [Blogger To WordPress] Old Blogger articles all redirect to home pageHi darthmom,
I have tried the same article and steps and didn’t found any issue after migration.
Could you please confirm that you have imported your blog XML from blogger.com using WordPress default Blogger import option? (Blogger import option available on top of Tools > Import page on your WordPress site.)
Thanks for heads up for “Test Case” URL issue. I have fixed that and fix will be available in our next release.
Thanks,
Forum: Plugins
In reply to: [Blogger To WordPress] The redirection takes you to the homeIf I try to go to an exact post from the old site, it redirects me to the homepage.
Have you used Preview link to go to the exact post from the old site?
Have you followed these steps to add redirection?
Could you please tell us more details about the steps that you followed before you stuck with this issue?
Thanks,
Forum: Plugins
In reply to: [Blogger To WordPress] The redirection takes you to the homeHave you guys followed these instructions?
Could you please share more details about the steps you followed and the URLs which are not working properly?
Thanks,
Forum: Fixing WordPress
In reply to: Child theme .css files are not overriding their parent .css filesCan I ask how you can view that?
<- I have just checked site page source, for that you need to go to your site, right click anywhere on page and you will get View Page Source option click on that and whole site source you will see in new browser tab. Check you styles file there.how would I find the CSS rules?
<- The CSS which you wrote in child theme CSS file which will override main theme CSS. As you are new for this I recommend you to ask your designer to do CSS changes in child theme CSS file.Forum: Fixing WordPress
In reply to: Child theme .css files are not overriding their parent .css filesI have just check your site and Your CSS file loading properly. First it loads
https://parthunter.com.au/wp-content/themes/adforest/css/modern.css?ver=4.9.5
this CSS file and after that
https://parthunter.com.au/wp-content/themes/adforest-child/modern.css?ver=1.0.0
this file loading. It means CSS file loading properly. Now you need to check your CSS rules.
Forum: Fixing WordPress
In reply to: Child theme .css files are not overriding their parent .css filesHello parthunteraustralia,
I think you need to replace
wp_get_theme() >get('1.0.0')
withwp_get_theme()->get('Version')
. Please try this code and let me know is it working for you or not.Forum: Plugins
In reply to: [WP REST API (WP API)] HTML Tags in ContentForum: Plugins
In reply to: [WP REST API (WP API)] HTML Tags in ContentElse you can use this code to remove HTML in view
.filter(‘toTrusted’, [‘$sce’, function($sce) {
return function(text) {
return $sce.trustAsHtml(text);
};
}]);write this in your script file and
<p ng-bind-html=”post.content | toTrusted”></p>
and this is in your view and you will get result.