saeedqs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display image from other site in wordpress sitehi
just use <img src=”other site image link”>
for example<img src=”www.test.com/images/image.jpg”>Forum: Fixing WordPress
In reply to: Using Page Names as permalinks issueshi
restart permalinks .i hope all of your issues will be solveForum: Themes and Templates
In reply to: How to customize widgets?@waseem
for this purpose you have to make your own widgetForum: Fixing WordPress
In reply to: Error: Cannot modify header information@mustangrebel64
You r welcomeForum: Fixing WordPress
In reply to: Error: Cannot modify header informationForum: Fixing WordPress
In reply to: Error: Cannot modify header informationjust go to file manager and access the files and
check your wp-settings.php for whitespaces before php closing and open tags
other option is these two functions which mentioned above i hope your bug will be fixForum: Fixing WordPress
In reply to: Error: Cannot modify header informationplz contact your webmaster to provide u ftp and cpanel access
🙂Forum: Fixing WordPress
In reply to: Error: Cannot modify header informationhave you a ftp account of your site ? or u have access to your cpanel?
Forum: Fixing WordPress
In reply to: Error: Cannot modify header informationplease use your ftp software to access wp-settings.php and pluggable.php files
Forum: Fixing WordPress
In reply to: Error: Cannot modify header information@mustangrebel64
check your wp-settings.php for whitespaces before php closing and open tags
other option is these two functions which mentioned above i hope your bug will be fixForum: Fixing WordPress
In reply to: Error: Cannot modify header informationcan u send me ur code?
Forum: Fixing WordPress
In reply to: Error: Cannot modify header information🙂
Forum: Fixing WordPress
In reply to: Error: Cannot modify header informationplz add semi colon at the end of function just like that
<?php ob_start(); ?>
<?php ob_flush(); ?>Forum: Fixing WordPress
In reply to: Error: Cannot modify header informationop_start() will turn output buffering on. While output buffering is active no output is sent from the script instead the output is stored in an internal buffer.on the other hand,ob_flush function will send the contents of the output buffer.
in short we can say that in wordpress these functions call the php buffer.Forum: Fixing WordPress
In reply to: Error: Cannot modify header informationhi
for this warning i refer to add two functions in wp-settings.php and pluggable.php which is <?php ob_start() ?>in top of page and second is <?php ob_flush() ?> in the end of page