Prestashop How To do the Web Development of Website. Errors, Issues, Bugs related to Prestashop like Frontend and Backend Development such as Templates, Pdf, Emails, mostly Code Customisations.
Contact Us
Get link
Facebook
X
Pinterest
Email
Other Apps
Contact Us
If you have any query regrading Site and any other issue, please feel free to contact at halflife74159@gmail.com
How To Create Your Own Custom Widgets Wordpress Wordpress provide a functionality to create your own custom widgets for this we have function that initilize your widget widgets_init . By using this function you can initilize your custom widget and call them by using dynamic_sidebar('customsidebarwidget') . Let create our own widget function custom_sidebar_widget(){ register_sidebar(array( 'name' => __('Custom Sidebar Widget', 'customsidebarwidget'), 'id' => 'customsidebarwidget', 'description'=> __('Your description about your widget', 'customsidebarwidget'), )); } add_action( 'widgets_init', 'custom_sidebar_widget' ); custom_sidebar_widget it's name of function that you used with widgets_init in Hook i.e. add_action( 'widgets_init', 'custom_sidebar_widget' ) . and inside this function you can describe your widget detail inside re...
Experience about PHP, Laravel, Prestashop PHP is a popular server-side programming language used to create dynamic websites and web applications. It is widely used for creating content management systems, e-commerce platforms, social networking sites, and more. PHP is known for its simplicity, flexibility, and scalability, and it is supported by most web hosting providers. Laravel is a free, open-source PHP web application framework used to build web applications. It provides a variety of features and tools to make web development faster and more efficient. Laravel is known for its elegant syntax, ease of use, and clear documentation, making it a popular choice for building web applications. PrestaShop is an open-source e-commerce platform written in PHP. It is designed to help businesses create online stores with ease. PrestaShop provides a range of features, including product catalog management, payment processing, and customer management. It also includes a range of mark...
Prestashop PDF Download Error If you got error while downloading pdf file in Prestashop Error : TCPDF ERROR: Some data has already been output to browser, can't send PDF file First of all check the below line of code in classes/pdf/PDF.php in your Prestashop ob_clean(); or ob_end_clean(); is there if ($render) { if (ob_get_level() && ob_get_length() > 0) { ob_clean(); } return $this->pdf_renderer->render($this->filename, $display); } and try to Download pdf file. If it's not working just add below highlighted line of code inside the constructor top in classes/pdf/PDF.php __constructor() function . ob_start(); save file and download your pdf again.
Comments
Post a Comment
If you have any error, bug related to your Prestashop website, Let me know