Hi,
The third slideshow, please use this line 425 (same file as mentioned above for line 425 ( themes\corona\includes\helper-slideshow.php ) . You can also put the original line back you had there before the change, which is what i pasted below.
if(!empty($element['slideshow_caption_title'])) $title = '<h1>'.$element['slideshow_caption_title'].'</p>';
--------------------------
Please download and install Notepad++ ( http://notepad-plus-plus.org/download/v6.2.1.html ) [big green button] ... (It has Magyar language pack for you to use built into it) Just use standard settings during installation.
Now unzip the theme on your desktop so that you have all the files in the Corona theme folder on your desktop. Now open up Notepad++
Look at this image http://i.imgur.com/8PARQ.png
on the top menu click Search (cntrl + shift + F) and just as in the image, click the button where the arrow is pointing, and locate the theme directory on your desktop, then put *.php for the filter. First search for <h1 and it will show you every location in the theme (there are not that many). change all the <h1 to <h2. You can do it all on the same page, just keep clicking ctrl-s (save) to save each file ..
Now search for </h1> and repeat the process changing each </h1 to </h2 .. Now you will have zero h1 in the entire theme, and can add them yourself! It will take 10 minutes in total.
In case you do not want to use that program. here is a list of all the pages with line numbers (from notepad++ that you need to open and change)
I included the file, and the line numbers, just change h1 to h2.
-------------------------------------------
corona\framework\php\function-set-avia-frontend.php
Line 398: $logo = "<h1 class='logo'><a href='".home_url('/')."'>".$logo."$sub</a></h1>";
Line 404: $logo = "<h1 class='logo bg-logo'><a href='".home_url('/')."'>".$logo."$sub</a></h1>";
-------------------------------------------
corona\includes\helper-slideshow.php
Line 287: if(!empty($slide['slideshow_caption_title'])) $output .= '<h1>'.$slide['slideshow_caption_title'].'</h1>';
Line 336: if(!empty($slide['slideshow_caption_title'])) $output .= '<h1>'.$slide['slideshow_caption_title'].'</h1>';
-------------------------------------------
corona\includes\helper-templates.php
Line 592: $output .= "<h1 class='post-title'>".get_the_title()."</h1>";
-------------------------------------------
corona\includes\loop-archive.php
Line 42: <h1 class='post-title'>
Line 44: </h1>
Line 85: <h1 class='post-title'><?php _e('Nothing Found', 'avia_framework'); ?></h1>
-------------------------------------------
corona\includes\loop-index.php
Line 27: <h1 class='post-title'>
Line 29: </h1>
Line 127: <h1 class='post-title'><?php _e('Nothing Found', 'avia_framework'); ?></h1>
-------------------------------------------
corona\includes\loop-page.php
Line 35: echo "<h1 class='post-title'>".get_the_title()."</h1>";
Line 64: <h1 class='post-title'><?php _e('Nothing Found', 'avia_framework'); ?></h1>
-------------------------------------------
corona\includes\loop-portfolio-single.php
Line 40: echo "<h1 class='post-title portfolio-single-post-title'>".get_the_title()."</h1>";
Line 68: <h1 class='post-title'><?php _e('Nothing Found', 'avia_framework'); ?></h1>
-------------------------------------------
corona\includes\loop-portfolio.php
Line 119: echo "<h1 class='post-title'>";
Line 121: echo "</h1>";
Line 175: <h1 class='post-title'><?php _e('Nothing Found', 'avia_framework'); ?></h1>
-------------------------------------------
corona\template-archives.php
Line 26: echo "<h1 class='post-title'>".get_the_title()."</h1>";
-------------------------------------------
corona\template-portfolio.php
Line 41: echo "<h1 class='post-title first-title'>".get_the_title()."</h1>";
-------------------------------------------
Thanks,
Nick