themevision
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama] Menu no longer a drop down?Hello,@noosiekins!
Your website works just fine on our side.
https://prnt.sc/pgs7tnAnyway, in the future, if the problem happens after updating, the first thing you should try is to deactivate All the active plugins temporarily, to see if there is no some sort of plugin conflict. If the theme works after you deactivated the plugins, activate it ane by one until the problem reappears so on that way you will find the problematic plugin(s)
Regards
Forum: Themes and Templates
In reply to: [Agama] Edit Blog Category PageHi @bodtje!
On code added by @dorsch
Part of the code is missing. So you get the error.This is the correct code:
function custom_excerpt($text) { // custom 'read more' link if (strpos($text, '[...]')) { $excerpt = strip_tags(str_replace('[...]', '... <a class="more-link" href="'.get_permalink().'">Read More...</a>', $text), "<a>"); } else { $excerpt = '<p>' . $text . '<a class="more-link" href="'.get_permalink().'">Read More...</a></p>'; } return $excerpt; } add_filter('the_excerpt', 'custom_excerpt');Please follow the next steps to fix the plugin error:
= Q. What to do if this plugin crashed the website? =
A. This plugin has a built-in function for checking the custom code for syntax errors, duplicate functions names, and etc. But the plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This is due to the fact that your custom code has a syntax error that this plugin could not detect. When this happens with you, please perform the following steps.1. Access your server via FTP or SFTP. If you aren’t sure how usually your web hosting provider will have instructions somewhere on their website.
2. Browse to the directorywp-content/plugins/my-custom-functions/. Please contact your web hosting company to get help if you can’t find this folder.
3. Rename the fileSTARTtoSTOP. This will stop the execution of your custom code.
4. Log in to the Admin Area of your WordPress website.
5. Go to the plugin settings pageSettings->PHP Inserter.
6. Edit/fix your custom PHP code that you entered before the crash.
7. Return to the plugin folder and rename the fileSTOPtoSTARTand you’re done!PS. As the @dorsch correctly mentioned, you have to switch off “Read More”-links in the customizer, otherwise it is doubled on posts without a manual excerpt. (Customizing ▸ Blog ▸ General)
Regards
- This reply was modified 6 years, 7 months ago by themevision.
Forum: Themes and Templates
In reply to: [Agama] Problem with Front Page Box IconsHi, @janschattling
Then maybe you should try this method:
https://fontawesome.com/how-to-use/on-the-web/using-with/wordpress
There is an option in the Plugin settings (Dashboard->Settings->Font Awesome) to use the Pro Icons.
https://prnt.sc/pdf7f6Regards
Forum: Themes and Templates
In reply to: [Agama] Problem with Front Page Box IconsHi,@janschattling!
Unfortunately, only the free icon set is currently allowed.
But, you can easily insert the image instead of the icon.Regards
Hello,@dorsch!
Please check the next thread:
https://wordpress.org/support/topic/edit-blog-category-page-2/
there you can find how to fix that.Regards
Forum: Themes and Templates
In reply to: [Agama] Edit Blog Category PageHi,@bodtje
From what I see you have created a blog summary page using the “Gold Addons For Elementor” plugin.
While this is a great plugin, it has some limitations as well.
If you want to display formatted text, there is an option in the GA Blog widget to display “Full Content” instead of an excerpt.
https://prnt.sc/pdb9eh
In this case, your text remains formatted. (But unfortunately without the Read more … link)Regards
Forum: Themes and Templates
In reply to: [Agama] Edit Blog Category PageHello, Marc!
1.Install and activate “My Custom Functions” plugin.
https://prnt.sc/pda4u32.From your WordPress dashboard, navigate to Settings->PHP inserter, and place the following custom PHP code in the code editor field:
function custom_excerpt($text) { // custom 'read more' link if (strpos($text, '[...]')) { $excerpt = strip_tags(str_replace('[...]', '... <a href="'.get_permalink().'">Read More...</a>', $text), "<a>"); } else { $excerpt = '<p>' . $text . '<a href="'.get_permalink().'">Read More...</a></p>'; } return $excerpt; } add_filter('the_excerpt', 'custom_excerpt');3. Switch the toggle to the “ON” position.
4. Click the “Save changes” button.
5. Refresh your Blog Page…
Now you should have the “Read More” link.
https://prnt.sc/pdaasxRegards
Forum: Themes and Templates
In reply to: [Agama] Menu not visible on mobileHello, @janschattling
Insert the following code into Customizing->General->Additional CSS:
#agama-logo .logo-tablet{ max-width: 70vw!important; }Regards
Forum: Themes and Templates
In reply to: [Agama] Problem with Front Page Box IconsForum: Themes and Templates
In reply to: [Agama] Edit Blog Category PageHi,@bodtje!
Yes, you must have it 🙂
If you do not see it, just enable the settings dialog by clicking the settings button located in the very top right corner.
https://prnt.sc/pd1lpc
https://prnt.sc/pd1m6pRegards
Forum: Themes and Templates
In reply to: [Agama] Edit Blog Category PageHello @bodtje!
Try to Insert your formatted text into the “Excerpt” text field on the right side of your post (Edit post, then copy your text from the main area to the “Excerpt” text field on the right.).
https://prnt.sc/pcz7l1
https://prnt.sc/pcz90nRegards
Forum: Themes and Templates
In reply to: [Agama] Menu not visible on mobileHello, @janschattling!
Can you give me an address to your webpage?
Forum: Themes and Templates
In reply to: [Agama] Problem with Front Page Box IconsHello @janschattling!
The Font Awesome Icons are already integrated into FrontPage Boxes.
https://prnt.sc/pcyh7xRegards
Forum: Themes and Templates
In reply to: [Agama] Header Image – LinkHello, @herwigviechtbauer!
For what you want, you need to modify the theme file.
If you decide to modify the theme files, I suggest you use the Child Theme. The Child theme is always a better option since a child theme inherits the look and feel of the parent theme and all of its functions, but can be used to make modifications to any part of the theme. In this way, customizations are kept separate from the parent theme’s files. Using a child theme lets you upgrade the parent theme without affecting the customizations you’ve made to your site…
So, to add an anchor link to the header image, follow the steps below:
Edit the “class-agama-helper.php” file in Agama theme:
1. First Open Appearance…
2. then Editor…
3. On the right side navigate to framework->class-agama-helper.php, and click on it to edit the file
4. Scroll down to the line #69,
https://prnt.sc/pcrltz
replace the codeecho '<a href="'. esc_url( home_url( '/' ) ) .'">';with the next one:
echo '<a href="http://viechtbauer.org#Persoenlich">';
https://prnt.sc/pcrmo1
5. click on the Update button to save the changes.Best Regards
Forum: Themes and Templates
In reply to: [Agama] Agama Blue – White space on topHi,@gramenauer!
Try the next code instead:
@media (min-width: 781px){ div#content { margin-top: -30px; } }Regards