Debabrata Ghosh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Possible to Add Slug for Page?Hi renfredyu,
Yes it is possible. The permalink structure you are asking will be possible for custom post types (domain.com/custom-post-type-slug/postname). Make sure to choose custom permalink structure for this from the backend(Ex. https://example.com/%postname%/).
Forum: Fixing WordPress
In reply to: 500 Internal Server Error – no links are workingHi malinrebecka,
Welcome ??
I am glad to know that it resolved your issue.
Forum: Fixing WordPress
In reply to: 500 Internal Server Error – no links are workingHi malinrebecka,
Try to update your current site’s “.htaccess” file.
You will find it from Dashboard>>Settings>>Permalinks>>Save Your Permalink Structure Again>>You will see a your new site’s htaccess rules in there>>Copy this and update the “.htaccess” file.
And also make sure that you have updated your migrated site’s “WordPress Address (URL)” and “Site Address (URL)” correctly.
Hope this will solve the problem.
Regards,
Debabrata GhoshForum: Fixing WordPress
In reply to: Warning: call_user_func_array()Hi rickvanleeuwen,
Can you try by deactivating your site’s plugins one by one and find out which plugin is the culprit ?
I guess the problem here with the version compatibility.
Regards,
Debabrata Ghosh
Forum: Fixing WordPress
In reply to: Not able to edit my wordpress page/postsHi nishant,
Try to temporary deactivate ‘tiny mice widget’ and ‘page biludr’ one by one ; and check if its fix or not ? I am guessing the problem might be there.
Forum: Fixing WordPress
In reply to: Not able to edit my wordpress page/postsHi nishant.bcmt11,
Are you using any ‘text editing’ plugin in your wordpress site ? Or can you tell me what are the plugins are you using in your site ?
Forum: Fixing WordPress
In reply to: Changing Permalinks. Old links don't workHi mehmeh,
You can try to save the permalink structure to the “default” and save it ; Then save it again to your required structure(mywebsite.com/postcategory/some-old-post/). May be it will be there now. And which version of WordPress, are you using ?
Forum: Fixing WordPress
In reply to: Changing Permalinks. Old links don't workHi mehmeh,
Have you updated .htaccess file after updating your site’s current permalink structure ?
Go to Dashboard > Settings > Permalinks > Scroll It Down to the bottom > You will be able to see a piece of code in there > Copy and Replace it in your site’s .htaccess file > Now see if it’s works for you or not ?
Regards,
Debabrata Ghosh
Forum: Fixing WordPress
In reply to: frontpage issueHi atilus,
I don’t know much about your current theme. But it seems like you are looking for menus or slideshow feature option within your theme and which you want to modify with beaver builder plugin. You might switch to some other theme which has these features.
Thanks.
Forum: Fixing WordPress
In reply to: WordPress how to add something to every pageHi abido,
I think, you have two options to do this. Either you can pick a right theme for it which supports your requirement Or you have to code and customize(add that menu structure or list up category in the every page of your website) your current theme to get this job done.
Regards,
Debabrata Ghosh
Forum: Fixing WordPress
In reply to: frontpage issueHi atilus,
Did you tried this (Dashboard > Settings > Reading > “Front page displays”) setting ?
Note: After you complete these(such as installing wordpress, picked a theme, create some pages etc.) process; Make sure you use this setting for your blog to set the homepage.
Regards,
Debabrata Ghosh
Forum: Fixing WordPress
In reply to: How to center my page’s in the middle of the screenHi agridevelopment,
Glad to know that you have solved that. I just checked out your site. Yes this is padding related issue and It seems like your current theme has siteorigin widgets support. I am sure that if you look around the widgets you have used for those sections in backend; You can adjust the padding for the widgets from there without touching any code. I think this will be a best practice for a newbie.
However it can solved directly by adjusting the css of your theme. But i will suggest you to look around your homepage widgets and areas you have customized from backend carefully; hopefully you can solve it.
Regards,
Debabrata
Forum: Fixing WordPress
In reply to: How to center my page’s in the middle of the screenHi agridevelopment,
Make sure you clear your browser’s cache in order to see your last modification. Press and hold “Ctrl” key and then press “F5” key while you are visiting your website.
Regards,
Debabrata
Forum: Fixing WordPress
In reply to: How to redirect mobile users?Hi Andrew990,
You can try something like this:
1. Go to your theme’s folder. (i.e. /wp-content/themes/”yourthemename”)
2. Now try to find out which file of your current running theme is common to all pages. (note: Generally it may be footer.php, header.php etc. It is depending on your installed theme.)
3. Now add these lines of code in that file within <script></script> tag.
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { window.location.href ='https://www.example.com'; //paste the URL of the page from your website instead of https://www.example.com }
4. Feel free to let me know if this works for you or not.
Regards,
DebabrataForum: Fixing WordPress
In reply to: Changing images through WordPress UIGood to hear from you. Yes this method will retain all stylings applied to the images.
Feel free to ask if you stuck somewhere..!!