Muhammad Javed
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Shortcodes not rendering but can’t find errorHello
please add this codethe_content();
under that line
while ( have_posts() ) : the_post();may be that is not added into content file.
Forum: Fixing WordPress
In reply to: make blog full widthits php file 1which you can find in wp-content/theme/qaengine/ directory.
Forum: Fixing WordPress
In reply to: Crop is not working for thumbsHi,
you can use this php library its really simple
https://github.com/conghai/crop-imageother wise try this pluign
https://www.ads-software.com/support/topic/problem-image-link-to-different-image-lightbox/
https://www.ads-software.com/plugins/manual-image-crop/that will help you.
Forum: Fixing WordPress
In reply to: Fatal error messageHi,
actually on line 5 you are calling a class wp_customize_section class which is not exists fist of check your theme files or not missed during upload or contact theme builder but if you currently get ride of this error you need to declare the class. you can write this small code in theme directory and file name is functions.php(/home/outofof8/public_html/wp-content/themes/bloggerbuz/)class WP_Customize_Section{
public function __construct() {
}
}thanks
Forum: Fixing WordPress
In reply to: make blog full widthHi,
try this please https://www.screencast.com/t/x4kqEHzblALForum: Fixing WordPress
In reply to: need help removing borders.Hi,
there is problem double quote please check this https://www.screencast.com/t/Dv60MiDviZxLForum: Fixing WordPress
In reply to: This site can’t be reachedHi,
you can set this at your backend menu setting -> General please check this screencast
https://www.screencast.com/t/2jI18iDHpForum: Fixing WordPress
In reply to: Different Background for Different PagesHi,
you can set this by page id, please check your source code in each body tag there is a class with page id you can write css on that basis for background.
https://www.screencast.com/t/R8cxODEW
forexample:
.page-id-15{background-color:red}Forum: Fixing WordPress
In reply to: Gap below the header and menuHi
in your style file (/wp-content/themes/hitmag/style.css1) line number 2196 you will see this
.site-header {
margin: 0 0 40px;
}now change to this
.site-header {
margin: 0 ;
}Forum: Fixing WordPress
In reply to: How to Import data and display on multiple pagesHello,
please check this plugin may be that will full fill your requirement
https://www.ads-software.com/plugins/wp-all-import/if you have word document then you need to write the script which read document and create pages as per your requirement and import it.
Thanks
Forum: Fixing WordPress
In reply to: Login to old site when redirectedHello,
i think you are using old site database if yes then you need to change the url of current site form wp_options{prefix_options} table.
in this table change url of site_url and home_url. please check this screenshothttps://www.screencast.com/t/1ElUuPMHM2
- This reply was modified 7 years ago by Muhammad Javed.
Forum: Fixing WordPress
In reply to: accidentally deleted database, no back up. Can I create a new one?Hello,
hopefully hosting can help you you can discuss with him.Forum: Fixing WordPress
In reply to: Buggy Image carouselHello,
please add this code in your style file (/wp-content/themes/Newspaper/style.css)ol.vc_carousel-indicators {
list-style: none;
}Forum: Fixing WordPress
In reply to: Trying to remove lines above and below page titleForum: Fixing WordPress
In reply to: Main Header Image Shrinkshello,
you can set simple css in style file
.hero {min-height: 200px;}