Chirag Aggarwal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Social Media linkshad u anything far? can u give your site link?
Forum: Fixing WordPress
In reply to: WP looking for the wrong image file nameread this maybe helpful!
Click hereForum: Fixing WordPress
In reply to: How to pass custom created HTML form to wordpress page?Let me explain clearly
1)Goto Post editor (or Page Editor) Switch to HTML mode. You are seeing those codes as text because wordpress is taking that as a text. See this Image
2)So, First of all, paste that code in HTML Tab Mode
Then go to your style.css (in theme editor) and paste the css part on the bottom or you can use plugins like Header and Footer to paste CSS and Javascript.
3)Make sure you have different identifiers (Class or ID) for the forum. Mean there should be no class like “header” “nav”.
Make sure Switch to HTML or Second Tab on the top of editorForum: Fixing WordPress
In reply to: WP looking for the wrong image file nameI tried editing the name to only wordpress-ubuntu.jpg and that worked perfectly. See Image.
Link
1) If you are using jetpack photon try disabling it.
2)Register your own Custom Dimensions for featured imageadd_image_size('my_feature_image', 450, 250, true); and call it in yout theme <?php the_post_thumbnail('my_feature_image'); ?>
in your functions.php
Forum: Fixing WordPress
In reply to: accessing wordpress website admin backendHi,
You need to add www as A record in your Domain DNS management.
However to login your can use this link Click Here
and add this to your .htaccess file (located in root directory)RewriteEngine on RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
Forum: Fixing WordPress
In reply to: read_more button translationTry Finding “Read More” in your functions.php and edit it if found
Forum: Fixing WordPress
In reply to: How to pass custom created HTML form to wordpress page?You can also use plugins, but if u want to do it manually then you will have copy Everything After form tag and till /form tag not whole HTML
Forum: Fixing WordPress
In reply to: Chart not showing up rightYou are welcome! and Please mark the thread as solved
Forum: Fixing WordPress
In reply to: Chart not showing up rightOr simply add this code on the bottom of ur style.CSS and u won’t need to anything else:
table { height:inherit}
Forum: Fixing WordPress
In reply to: Chart not showing up rightThere are three tables so u will have to add
height:inherit
in place of height:#pxForum: Fixing WordPress
In reply to: Fatal errorYou are welcome
Forum: Fixing WordPress
In reply to: Fatal errorYou are welcome
Forum: Fixing WordPress
In reply to: How to pass custom created HTML form to wordpress page?You can copy the CSS to custom css or style.css
Forum: Fixing WordPress
In reply to: Chart not showing up rightCan u post the whole code from form to /form
Forum: Fixing WordPress
In reply to: Chart not showing up rightCheck if that is working