Hi @zabriskie73,
Thanks for your post.
Since Elementor works fundamentally differently from “normal” WordPress plugins (it creates all markup via shortcodes), I’d recommend doing it via PHP.
For that, you have to find the file or function that displays the mentioned widget and then add something like this, assuming the <?php tag is already open:
if(function_exist( 'get_secondary_title' )) {
$secondary_title = get_secondary_titke(get_the_ID());
?>
<h3>
<span class="secondary-title">
<?= get_secondary_title(); ?>:
</span>
<span class="primary-title">
<?= $widget_title; ?>
</span>
</h3>
<?php
}
else {
echo $widget_title;
}
Don’t forget to go to Secondary Title’s settings page and turn off “Auto show”.
Please note that I didn’t test this code since I don’t have Elementor and your active theme. But this is basically the way to achieve what you have in mind. Two other possible solutions come to mind, but I can already tell that they are most likely unreliable and therefore should be avoided.
If that’s too complicated for you or you have difficulties understanding the code, I could offer to assist you by implementing it myself (I only do this for friendly users like you ??).
If you’re okay with this, I’d need at least the theme files (both the main theme and, if there is one, the child theme). But to get 100% working results, I need a clone of your entire website. This can be done with a few clicks with the plugin BackupBuddy, which you can download from my repository.
Steps:
- Go to the dashboard, click Install, and select the .zip file of the plugin you’ve just downloaded
- Activate the plugin
- Navigate to the BackupBuddy menu item in the dashboard and select Settings
- Under General, enter
admin
in the Import password field and again to confirm it. Then save the page
- Go to Backups, hit Skip Setup Wizard for Now and choose Complete backup
- Depending on how big your WordPress installation is, it may take a few minutes to complete. Once it’s done, hit the download button which will let you download a .zip file that you can (and should) delete after the download is complete (for security reasons)
- Do not rename the .zip file and share it with me, preferably on a cloud service like Google Drive and share it with me only (also for security reasons) by using the email
[email protected]
- Send me the link to the uploaded file via the same email address
I’ll take over from there and give you back the working version with a detailed explanation of how I did it so that you can do it yourself if you happen to get into the same or a similar situation again in the future.
I hope my individual support attempt is acceptable to you.