Akhilesh Sabharwal
Forum Replies Created
-
Forum: Plugins
In reply to: [Subtitles] Hemingway Theme – Extra HTML TagsOk. Just read your Github link…
Will look deeper into the Theme Code – Thanks A lot PhilipForum: Plugins
In reply to: [Subtitles] Hemingway Theme – Extra HTML TagsJust to add – the plugin works as expected (and brilliantly) on other themes…
Forum: Plugins
In reply to: [WP-PageNavi] After update can′t disable option "Use pagenavi-css.css"@lester It seems that the master zip from github, does not include the relevant files in the ‘scb’ folder. As a result is you just replace all the plugin files it causes the White screen of death as faced possibly by @kademila.
If you add it as a new plugin and activate it – it does not activate due to a fatal error.
If you selectively update the new files… It works.
Forum: Fixing WordPress
In reply to: Process to get startedKarl,
If you are using a local installation, just copy the theme files into the wp-content/themes directory.Forum: Fixing WordPress
In reply to: Process to get startedIf you just want to run a site on WordPress, you would not need to create a server on your own computer, unless you want to develop your own themes and plugins.
As I see from your post you want to migrate an existing site to WordPress, a quick and simple way to do this would be to run a WordPress appliance on your machine, which should set you up with a self contained installation of WordPress to do development in.
If you are using Linux, you might already have the necessary software (Apache + MySQL) installed on your local machine. If yes, you can also follow instructions here to help you setup WordPress on a server manually. The instructions are for a web server, but you will find that they work the same on a local Linux installation as well.
Forum: Fixing WordPress
In reply to: Process to get startedMusebelts ! Welcome to the wonderful world of WordPress.
With a tiny bit of effort you will be on your way to a simple and elegant blogging solution.To start I suggest you check out the detailed pages here
1. Requirements : https://www.ads-software.com/about/requirements/ (Yes. you need MOD_REWRITE)
2. Next steps are available at this Codex page : https://codex.www.ads-software.com/Getting_Started_with_WordPress
Also most web hosts now provide auto install scripts for WordPress. Check with your web host about this.
Have Fun!
Forum: Fixing WordPress
In reply to: I can not access my site. help me!saber000
I think you may have setup BPS such that it has created the secure .htaccess file and has then changed the permissions on the site. What this means is that site management tools like CPanel, may no longer have the permission to edit your site.
If you then deleted the wp-admin htaccess file to enable you to create the folder in wp-content/uploads/filebas you have probably blocked access to your site.
Can you let us have your site url (www.example.com) only so that we can have a look.
I think you may need to SSH into your site and delete the two plugins. If that is not possible, you should contact your hosting service to help you reset the .htaccess files to default.
You can see more information regarding this at the this support forum link for Bullet Proof Security https://www.ads-software.com/support/topic/bulletproof-security-htaccess-core?replies=12
Forum: Fixing WordPress
In reply to: I can not access my site. help me!Saber,
I would still like to help. Please do not give me the access details for your site. Please do still let me know the plugins you have installed.Forum: Fixing WordPress
In reply to: I can not access my site. help me!Sorry to hear you are having trouble. Not a great way to start, I know.
Could you let me your hosting provider, and any other plugins you may have installed?
Forum: Plugins
In reply to: [Simnor Shortcodes] Nesting ShortcodesHey! Having trouble nesting the shortcodes for toggle
So for example I am adding a Gravity Forms Form shortcode as the text in the toggle. But the shortcode breaks at the first ” used by the gravity forms shortcode.
[simnor_toggle icon="list-alt" heading="Add a book" text="[gravityform id="2" name="Books" title="false" description="false"]" onload="closed"]
Forum: Plugins
In reply to: [UI Labs] Indicator for Scheduled postYeahh… So please ignore my request. I just realised that the markup for scheduled post is not available in WP-admin.. Hence cannot add the custom indicator.
Hey!
Is there an update to this – My current theme does not have room to add the widget and I want to add a subscribe via email.
Thanks>Forum: Themes and Templates
In reply to: [Publish] Issue with Footer and Title TagHave added the following code into the header.php and have resolved the issue at present.
<title><?php /* * Print the <title> tag based on what is being viewed. */ global $page, $paged; wp_title( '-', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " - $site_description"; ?></title>
But am still unsure if the theme was to do this or not ??
Thanks for a great theme anyway – I can now be busy blogging.
Forum: Themes and Templates
In reply to: [Publish] Issue with Footer and Title TagProblem no 2 has been resolved.
Point 1 is still a problem wp_title does not seem to be working for me with Publish.
If I add
<?php bloginfo('name'); ?>
to the title line in Header.php I get the Site name on all pages, but do not get the blog description line on the home page.I am using no plugins apart from Jetpack and Worpit’s Twitter Bootstrap. Have tried disabling both but with no luck.