How to work email subscribe in WordPress?

There are many WordPress plugins that let you manage your email subscription. But overall this is not recommended, mainly because it creates a heavy load on the server. What will inevitably create a problem with the hosting service. In my experience, it is advisable to work with professional external services. For various reasons among which … Read more

Display Page featured Image as well as Posts featured Image

WordPress loop functions depend on the global variables, so you will have to get the data from page before you run the loop. Generally, you should be able to do something like this- $page_id = get_the_ID(); //this is important, we will use this later while(have_posts()): the_post(); //do something with the post here echo get_the_post_thumbnail( $page_id … Read more

Convert HTML5 to WordPress theme

You should start with tutorials on web to convert HTML5 to WordPress. The steps are too exhaustive to be covered in an answer here. However, here’s a link for you to get started. Also, don’t forget to check out WordPress Codex, the documentation which will guide you through WP functions, standards & APIS.

How to resize video lightbox popup in wordpress? [closed]

Check the avada-documentation: https://theme-fusion.com/support/documentation/avada-documentation/ -> Menu -> Extra -> Videos In Lightbox -> How To Set Video Size in Fusion Theme Options How To Set Video Size in Fusion Theme Options Step 1 – Navigate to the Avada > Theme Options tab. Step 2 – Go to the Lightbox tab, and locate the Slideshow Video … Read more