Aslam
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Call to undefined function wp_enqueue_syle()Check your spelling, you are missing a ‘t’ in wp_enqueue_syle.
Forum: Fixing WordPress
In reply to: reduce space between logo and site titleTo fix the space between logo and site title in mobile, add the below css in style.css file of your websites theme.
@media only screen and (max-width: 480px){
.site-title a::before {
height: 100px !important;
}
}Forum: Fixing WordPress
In reply to: The font of my pages changed when moving from http to httpsYou will first have to change your wordpress and site address to https.
Use a plugin like Really Simple SSL to redirect http to https, this will 301 redirect all current and future http references to https, and keep your site SEO friendly.
If using the plugin does not fix the font issue, it might be possible that the font links are hard coded by the theme.
You will have to change links in your theme manually, cause the CSS and js files relevant to font in your theme might be pointing to http. If possible, change urls in theme files to // instead of https://, this will create relative links.
Note: I had tested https installation on your website and it is properly configured.
Forum: Developing with WordPress
In reply to: Api only for logged in usersYou can use this plugin or its code: https://www.ads-software.com/plugins/disable-json-api/
Forum: Fixing WordPress
In reply to: Can I post without it going to subscribers?If its a RSS driven campaign in Mailchimp, you can try:
https://www.ads-software.com/plugins/stealth-publish/Forum: Fixing WordPress
In reply to: Interactive Web Page?It can be integrated in wordpress, but you wont find a similar template as it is custom made, you will have to get it developed from a UI developer. The effects are achieved by parallax scrolling you can google for premium parallax themes, that might serve your purpose.
Forum: Fixing WordPress
In reply to: How to redirect new usersUse a plugin. Check this one, where you can set the roles and redirect to custom urls.
https://www.ads-software.com/plugins/redirect-after-login/Forum: Fixing WordPress
In reply to: Articles and pages redirectIn Admin Dasboard:
Settings > General > Site Address (URL) > https://www.myurl.net
Save.
This will set your new path and will also handle your redirects for articles section.To login for admin access you will still have to use your old path:
https://www.myurl.net/home/wp-admin/- This reply was modified 6 years, 7 months ago by Aslam. Reason: login path
Forum: Fixing WordPress
In reply to: Create and show different versions of the website depending on UserUsing 2 parent categories will help you in organizing and segregating the content.
You can use the first screen to give your users the choice.
Once they make the choice push them to the respective categories archive page.In case you use widgets like recent posts, popular posts etc. which can be common in sidebar you might need to write custom conditional logic.
Custom coding will also be required if you want unique links in top menu for the sections.
If you want to avoid coding you will have to go with multisite with subdomains as kartik suggested but its like maintaining 2 separate sites.
Forum: Fixing WordPress
In reply to: Altering PermalinksIn Admin Dashboard:
Settings > Permalink > Choose Custom Structure and Insert
/%category%/%postname%/Below that In “Category Base” just Insert a dot (.) and Save.
That will set your blog and articles permalink.
Forum: Themes and Templates
In reply to: [Lucienne] A complete beginner needs help with inserting imagesFor inserting images in your articles check below link:
https://codex.www.ads-software.com/Inserting_Media_into_Posts_and_PagesFor the slider settings go to dashboard > Appearance > Customizer.
Else refer the themes documentation.Forum: Fixing WordPress
In reply to: Staging environment on live siteYou can use a plugin to redirect to a specific url after login. This way you can skip the dashboard.
Check this plugin:
https://www.ads-software.com/plugins/redirect-after-login/You can also refer below link if you want to integrate directly in code
https://wordpress.stackexchange.com/questions/169704/redirect-to-referring-page-after-logging-in- This reply was modified 6 years, 7 months ago by Aslam.