How can I edit the final HTML structure of the whole web page

This theme has a companion plugin called hunk-companion. I ssh’d to my server and did grep -iRl “almaira_shop_show_frontpage” inside the wp-content folder and it returned this: plugins/hunk-companion/almaira-shop/almaira-shop-admin/almaira_shop_shortcode.php I found that in plugins/hunk-companion/almaira-shop/almaira-shop-frontpage you have all the sections’ .php files. You can now copy the code you need into your own page template file to create … Read more

Clickable Text To Replace Radio buttons

This is an css question, so really this is not the right place for it. However, you need to use the + operator and the :checked selector like this: (This assumes your radio buttons are built like this): <input type=”radio” id=”my_awesome_radio_1″ value=”value1″ /> <label for=”my_awesome_radio_1″>Value 1</label> <input type=”radio” id=”my_awesome_radio_2″ value=”value2″ /> <label for=”my_awesome_radio_2″>Value 2</label> <input … Read more