-
AuthorSearch Results
-
December 21st, 2021 at 15:20 #124656
In reply to: Bouton sur image en tete
Bonjour Zed
Merci pour votre retourJ’ai trouvé la solution pour le bouton d’action sur l’image d’en tête.
Mais mon en-tête est un slider et je n’ai plus l’animation des titres.
Est-ce une option prémium ?
Pour vous envoyer des captures d’écran comment puis-je procéder ? mon site est en maintenance jusqu’en janvier.
Merci pour votre aide
MarionWebsite: www.luticiole.com
December 19th, 2021 at 03:10 #124614In reply to: Unable to make changes in header and background
Zed
Cryout Creations mastermindHi,
I am not sure what difficulties you’re encountering. The header/background color/image options are core WordPress functionality and should always work (when present in the panels).
If you are able to change these options but they don’t take effect on the site, ensure that the site has no form of caching (or that the caching is cleared).
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.December 19th, 2021 at 03:06 #124613In reply to: How to remove Archives
Zed
Cryout Creations mastermindHi,
Archives and categories are core WordPress functionality and cannot be deleted, just hidden by ensuring they are not linked to from anywhere on the site.
https://www.cryoutcreations.eu/docs/themes-legacy/settings/post-info/#show-on-blog-pages
https://www.cryoutcreations.eu/docs/themes-legacy/settings/post-info/#show-on-single-pagesIf you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.December 19th, 2021 at 02:56 #124609In reply to: Top Menu opens new tab when clicked
Zed
Cryout Creations mastermindHi,
Check the advanced menu items properties when editing the menu:
These can be enabled from the screen options:
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.December 18th, 2021 at 22:35 #124586In reply to: Podcast Player gets slimmed down on Landing Page
Zed
Cryout Creations mastermindHi,
The
iframe
embedding the player has a fixed width of 310px. This is not applied by the theme’s styling.Try using the following CSS and check if the widget gives itself a different width:
#lp-text-one .lp-text-card { width: 100%; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.November 29th, 2021 at 12:00 #124063In reply to: Page formatting wrong on Mobile
I recently created this site. http://thecreeping.com/ Everything is looking and working great except one page when viewed on a Mobile. Here’s the page: http://thecreeping.com/full-credits/
When holding the phone horizontally it looks great but holding it vertically makes all the alignment mess up. I’m using an iPhone 8Plus and I’ve looked at it on Chrome and Safari. Any help much appreciated.
November 11th, 2021 at 19:18 #123565In reply to: Presentation Page – widgets
Hi Zed,
That’s fine, I’ve got no problem configuring the widgets…except that the presentation page displays both a full-width text box, and then 3 columns (x 2 rows) of wrap widgets. Is the full-width text a widget?
If the example text and widgets were visible in my admin I would understand better how the example presentation page is constructed. I think it’s a mistake ‘hiding’ them somewhere. Sure, they’ll disappear once I make my own content. But it’s very curious that the sample material exists at all without any entries in the presentation page or widgets. Where is this sample material, where is it hiding? Maybe I want to get rid of it off my system altogether.
Don’t get me wrong, I appreciate the sample content and seeing how a presentation page might look. But I don’t think you should hide the magic of how you did it – it might be useful to everyone!
Thanks.
November 10th, 2021 at 11:43 #123533In reply to: How to show post meta on custom post type in home.
Zed
Cryout Creations mastermindThe default behaviour is to handle the default post type. If you edit the existing code and replace the checks for your custom post type you’re then excluding the default post type.
In any instances you’re editing type checks, you’d need to include your post type next to the default ‘post’ one, for example by replacing
if ( 'post' == get_post_type() )
with
if ( in_array( get_post_type(), array( 'post', 'rilisan' ) ) )
You could also give this plugin a try in case it accomplishes the same result without the need for manual code modifications.
Otherwise, it may be needed to also make use of WordPress’ template hierarchy, which lets you define separate archive-SLUG.php and/or category-SLUG.php files (and others) for each post type.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.November 8th, 2021 at 18:19 #123439In reply to: How to optimize pictures for mobile version
Zed
Cryout Creations mastermindHi,
The header image is displayed according to the selection made in the theme’s header image behaviour option.
The two available modes match with different usage scenarios and requirements – in your case I believe the contained setting would fit better.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.November 8th, 2021 at 18:13 #123438In reply to: Strange font behaviour in Nirvana 1.6.1
Zed
Cryout Creations mastermindHi,
I just went through the process as @rene described it and was not able to replicate the issue on our test site. The Ubuntu font set by the scheme remains the one selected in the general option and applied on the frontend.
Perhaps there’s something on the site that interferes with the settings saving process (and cause the loss of some of the options).Try making a theme settings export before and after the listed steps and check if the two exports have differences in length and content.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.November 8th, 2021 at 00:37 #123417Zed
Cryout Creations mastermindHi,
I believe we’ve discussed about this through the support service.
For anyone else having the same question, TwentyTwentyOne filters each image’s attributes (including products) and adds inline styling to set the maximum size attribute. We don’t do this in our themes because inline styling is generally bad practice.
If (all) the product images used are rather small, it should be possible to force shrink them with CSS:
body.woocommerce div.product div.images img { max-width: ...px; /* actual image files width or of the smallest of them */ }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.November 8th, 2021 at 00:15 #123410In reply to: CTA button 2 on landing page slider
Zed
Cryout Creations mastermindHi,
I believe we have discussed these topics (and more) through the support service.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
The theme’s don’t add theme specific classnames or identifiers to the markup. However you should be able to do this by writing some custom (PHP) code to append the theme’s slug as an additional class to the document body tag:
function my_body_class( $classes ) { $classes[] = 'theme-' . esc_attr( get_template() ); return $classes; } add_filter( 'body_class', 'my_body_class' );
https://developer.wordpress.org/reference/hooks/body_class/
https://developer.wordpress.org/reference/functions/get_template/If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.November 7th, 2021 at 23:50 #123398In reply to: 502 Bad Gateway error
Zed
Cryout Creations mastermindHi,
That bit of code attempts to remove WordPress’ built-in styling applied to the recent posts widget. Perhaps the system the theme is running on does not have this functionality, making the function call fail.
If you have access to the theme’s files or are able to install the theme as zip on that system, edit the indicated
nirvana/includes/theme-comments.php
file and comment out (or delete)
add_action( 'widgets_init', 'nirvana_remove_recent_comments_style' );
on line 76 below to disable that part of code.Please let us know if that works and we’ll include an additional check in the next update to avoid this in the future.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.November 7th, 2021 at 23:34 #123392In reply to: Disappearing H Headings On Pages
Zed
Cryout Creations mastermindYour first reply wasn’t visible immediately because it was held for moderation due to containing links and markup.
The theme’s landing page feature picks up content from the existing published pages and posts (this varies between sections). In its default configuration the theme automatically uses the most recent content of the necessary type for the active sections – if the content source options were never manually adjusted to select a specific page (or category), then this still happens and publishing new content automatically places at the top of the visibility list.
I am not sure what is happening on the site (if the headings are missing their markup or they exist as markup but they lack styling). Headings appear to still work fine on our theme demo.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.October 28th, 2021 at 23:37 #123046In reply to: Blurry featured images
onajourneynl
Power UserI experience the same problem 🙁 I hope this can be solved soon! I tried so many things yet, resizing images, different plugins.. nothing helps!
October 25th, 2021 at 08:09 #122901In reply to: Strange font behaviour in Nirvana 1.6.1
Hi Rene,
tank you for your quick answer. I tried this last week without an effect. Second time i tried it today, and it´s working. So thank you for your help.
Regards
AndréOctober 23rd, 2021 at 15:51 #122789Topic: Change overlay on hover for post thumbnails
in forum How ToHi there!
Is it possible to change opacity of overlay on hover somehow for post thumbnails?
You can see it here: http://anieowyn.com/category/journal/india-2017/October 18th, 2021 at 00:39 #122615In reply to: text is no longer wrapping
davidvs
Power UserHi Zed,
Apologies for the long delay in replying. I am afraid the text no longer wraps as it did before and only on mobile devices such as an iPhone.
Home page not wrapping after latest update:
Page reported before still not wrapping:
https://germanbunkers.com/stp-adolf
Thanks so much,
David
Website: germanbunkers.com
October 7th, 2021 at 21:06 #122363In reply to: Disappearing H Headings On Pages
rogerl78
Power UserHi, Zed,
My level of confusion grows, so I will try to explain what happened. A day or so ago I tried to reply here and wrote a message explaining that I had made a special “Heading Demo” page that consisted only of headings H1 through H6. I linked to that page in the reply I wrote here.
I do not see that reply online, so I am guessing that it is in moderation and being held. Either that or I made a mistake!!
Anyway, I received a message from my client today saying that the home page was not right and they attached a screenshot. In short, the Heading Demo page I made was appearing in the upper portion of the presentation page where you see Welcome to Scruff now. Note that in the current, correct, setup, the Welcome to Scruff section is a page which is specified via the Codex customize settings. For some reason, the new Heading Demo page “over-rode” those settings and appeared there instead.
Rather than cause any more worry for the client, I simply put the Heading Demo page in the trash and the presentation page reverted to it’s perfectly normal self.
I think that I shall leave everything alone because the site working fine and there is no point in causing any concern. I know that the “missing” H tags will probably cause some SEO weaknesses, but that is acceptable under the circumstances.
Thanks again,
Roger
Website: scruffcats.org
October 6th, 2021 at 12:54 #122310In reply to: Mantra – Category Archive page 2+
Hi Zed.
I have re-saved the permalink settings, but it still did not work.
I have also tried to apply the default WP theme “Twenty Twenty One”, where it works just as it should.
Switching back to the Mantra theme, it stops working again.
October 5th, 2021 at 22:21 #122276Zed
Cryout Creations mastermindHi,
Icon Blocks in the free edition of Fluida can only link to their source pages (WordPress.org limits the total number of custom fields that a theme can implement in its options – each icon block would have require one extra field to provide custom link functionality).
We’ve implemented this in the theme’s Plus edition only using a companion plugin that implements a custom post type with the necessary additional control options.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.October 5th, 2021 at 22:14 #122274In reply to: pretitle-meta
Zed
Cryout Creations mastermindAs indicated in the tutorial, strings can be found in multiple sources not just the theme.
That text, for example, is part of WordPress itself as the theme uses a core function to retrieve the category titles.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.September 27th, 2021 at 06:33 #121970In reply to: Font Families on Presentation Page
ADDENDUM:
Sorry, mein Beispiel wurde gleich in einen gültigen Link umgewandelt, funktioniert also, ist aber wenig instruktiv. Also zweiter Anlauf:
<h1 style=”text-align: center;font-family:GOOGLE FONT NAME”>
IHRE ÜBERSCHRIFT MIT ODER OHNE HYPERLINK</h1>Grüße
ChrissiWebsite: www.sprachblasen.de
September 27th, 2021 at 06:10 #121969In reply to: Font Families on Presentation Page
Hi Oliver,
I finally updated for stability reasons and tried a very simple »workaround«. Not very elegant but it works, as far as I can see:
In text areas try direct formatting with inline CSS font styling:
<h1 style=”text-align: center;font-family:GOOGLE FONT NAME”>
LINK-TEXT</h1>Choose the heading level 1 to 6 as you like it.
The same in Cryout Columns, leaving the title field empty.
(The benefit of this solution is the broader spacing between feature image and the »title-heading«. Insert a line break (<br>) behind heading if you want. You can also change the heading size: H5 nearly reproduces the former title format, but H4 also looks OK.
(The main body text is displayed correctly, so no changes were necessary in my case)
PLEASE try at your own risk (I’m an absolute greenhorn!!!), but good luck, if you do!
Problems? – Feel free to write back.Have a look if you like (I’m currently using version 1.6.1.)
Greetings
ChrissiWebsite: www.sprachblasen.de
September 21st, 2021 at 11:50 #121801In reply to: Landing page – two languages
Hello Zed!
Thank you very much for your input.I could not figure it out with your suggestion – the string I could eventually find could not be chosen for translation. Also, in the widgets of the landing page of Esotera – the pictures are either not existing or not displayed in the English version, as mentioned above – besides the problem that the titles/descriptons of the widgets you adapt in the costumizer/landing page area are not translated and/or cannot be chosen as to be translated.
Could you maybe provide more specific info on this topic? And about the pics?
Is Esotera not compatible with WPML?An IT-specialist and friend of mine had a look into it and reckoned there might be an error in Esotera.. :/
Thank you very much for your help, it is very appreciated!
Best,
MartinaSeptember 20th, 2021 at 21:06 #121793I think I am experiencing the same issue with version 2.4.0.1 of the Parabola theme. I have a primary navigation with 6 top level items. Each of the top level items is both a link to a page as well as a parent menu to a list of other links. On mobile I don’t see a way to access those other links.
On mobile when I expand the hamburger menu the top level items do display a down arrow next to the menu. Tapping the text or the down arrow immediately navigates to the link. In previous versions of the theme on mobile a tap would expand the menu and not immediately navigate to the top level link destination. I would at least expect a tap on the arrow to expand the menu.
On desktop the top level menus are correctly expanded on hover.
I am able to replicate the issue on desktop using dev tools and don’t see any JavaScript errors on the site. I am told this issue is not reproducible on an Android but can not verify because the issue was first reported to me on iOS and I am also on iOS but was able to see it on iOS and the dev tools in my desktop browser.
Website: sandtots.com
September 20th, 2021 at 17:02 #121788Just to update this discussion, I upgraded to WP 5.8.1 this morning, but I had noticed this problem for a while. After the upgrade, the comments were still not being displayed. I applied the change Rufus suggested on August 13, 2020, and the problem is now fixed!
Thank you, Rufus!
September 12th, 2021 at 15:44 #121425Zed
Cryout Creations mastermindConcerning the underlining of content links, please see this reply: https://www.cryoutcreations.eu/forums/t/extra-css-text-decoration?view=all#post-121419
We are looking into 1 & 2.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.September 12th, 2021 at 15:05 #121420In reply to: PHP and CSS are executable
Zed
Cryout Creations mastermindHi,
File permissions are handled by the server and not really under WordPress’ control and definitely not the theme. While WordPress (or plugins) can modify permissions, they need sufficient permissions on the files to begin with.
I suggest discussing this with your hosting provider as permission changes are either due to a configuration change or a sign for suspicion.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic. -
AuthorSearch Results
Search Results for 'ie'
-
Search Results
-
Hi there!
Is it possible to change opacity of overlay on hover somehow for post thumbnails?
You can see it here: http://anieowyn.com/category/journal/india-2017/