Chris.V
Forum Replies Created
-
Ok, thanks!
Ok, I get it now but in my humble opinion, it seems a bit counterintuitive.
If I don’t want a search option in my website and I remove it from the desktop header, I will still get it in the mobile menu whether I like it or not. I can’t find an option to disable the search widget from the toggle button for the mobile. Moreover, the 2in1 icon might cause confusion to some users like in my case.
Anyway, can you please provide a quick script/snippet to just change the icon?
Regards,
Chris- This reply was modified 1 month, 1 week ago by Chris.V.
Solved! Thanks @manok-1!
@jmatiasmastro Yes, deactivating the plugin makes the .screen-reader-text class go away. The actual issue is that when the .screen-reader-text class is added the field label is being forced to go inside the field input, therefore, is not shown where it should.
Related screenshot: https://ibb.co/BN2FYGj
- This reply was modified 6 months, 3 weeks ago by Chris.V.
Ναι, αυτ? ?ταν! Σε ευχαριστ? π?ρα πολ?! Με ?σωσε? απ? αρκετ? googling!
?χω το ?διο πρ?βλημα. Μ?πω? βρ?κε? λ?ση;
Βλ?πω πω? ?χει να κ?νει με το woocommerce και τα themes που χρησιμοποιο?ν wp-blocks στο checkout.
- This reply was modified 7 months ago by Chris.V.
Hi,
I am having the same problem, did you find any solution? I double-checked my credentials and are ok but no available method for payment as well.
Regards,
Chris
Forum: Plugins
In reply to: [Widgets for Ebay Reviews] Reviews do not downloadThanks!
It is safe to update!
I updated the plugin and nothing broke! Only a custom css I had in the h2 title because now the plugin uses h4. Except that everything else was as before. No other broken css whatsoever!
Good to know! Thanks!
Hi @victorsun2018, thanks for the reply. However, on the project I am working on the creation of a child theme only to implement your solution it is not recommended. I used the following script to solve the problem without the creation of a child theme.
function my_custom_excerpt_read_more_link( $output ) { global $post; return $output . '<span class="dynami-politon-post-date">Published on ' . get_the_date('j F Y', get_the_ID()) . '</span>' . '<a href="' . get_permalink( $post->ID ) . '" class="custom-read-more">Read More</a>'; } add_filter( 'the_excerpt', 'my_custom_excerpt_read_more_link' );
Unfortunately in the free version, Polylang, does not offer a way to search and translate those specific strings. For now I will go with my workaround. Thanks for the fast reply!
While I agree that people have no reason to visit any taxonomy pages, this issue does affect the way the section is displayed on the front end. While all the items in your dedicated menu page (containing the shortcode) will be displayed in the correct language, the menu section that a user clicks to scroll on the desired section is being displayed in the wrong language.
Related screenshot with the said issue: https://i.ibb.co/XsXWrYg/Screenshot-1.jpg
Polylang includes an option for ‘Custom post types and Taxonomies’ but it is deactivated. In order to activate it the theme/plugin must use the same actions and filters as WordPress. I don’t know if this is the case with the Five Star Restaurant plugin. More info at this link: https://polylang.pro/doc/multilingual-custom-post-types-and-taxonomies/
Forum: Themes and Templates
In reply to: [Rife Free] No full width option on gutenberg columnsYes, this feature does require additional CSS. However, the solution in my case was pretty simple. I will write it down for future reference. I managed to add a full width column option on gutenberg editor with the following steps:
a) Create a custom snippet or add to your functions.php the following:
add_theme_support('align-wide');
b) Add the following CSS (customize it according to your needs)
.alignfull { margin: 32px calc(50% - 50vw); max-width: 100vw; width: 100vw; }
Regards,
Chris
Ok, thanks for answering!