each page and post on my website styleshark.in displays an embedded message spread the love. I have tried all options and still not getting where to remove it. i want to remove it.
enter image description here
You have "Sassy Social Share" Plugin installed . You can change the text "spread the love " via the Title option in the Standard Interface section.
Related
I am currently experiencing a problem with my google results. My meta description has been changed to characters I know nothing about for no reason. Normally here was the description that is on my home page, but that is suddenly gone. (see the screenshot for clarification).
I've tried a lot of things to adjust the meta description, but unfortunately I can't figure it out and this is a bad image for my company.
It concerns the website www.webrange.nl that I built with wordpress. Does anyone have any tips or maybe a way to solve this? So that the description returns to normal.
I have changed the description in the head of the website:
All-in webdevelopment
And also changed it with a seo plugin, and in the theme it self.
Description displayed on google results can be different from the meta description of your website for multiples reasons.
Google crawlers doesn't crawl websites everytime, there may be a delay of few hours to few days between your meta description modification and the moment when google update the description displayed on search results.
As we can see and your page, the meta description seems correct. It 's possible that you already fixed your problem but you'll have to wait for Google to update it on their side.
You can check google search console to force a new indexation of your page, or (re)send your xml sitemap. It can accelerate the process.
Also, keep in mind that Google can use an excerpt of your page content instead of your meta description if Google decides that the excerpt he found on your page is more relevant than your meta description, depending on keyword searched by the user. Example : You have a page talking about cars, and the user search for "engine" in google. If your meta description does not contain the word "engine" but your page content has a text containing it, there is high probability that Google display a description with an excerpt of that content instead of your meta description. It can be confusing
I'm trying to change the english text "By submitting this form, you hereby agree that we may collect, store and process your data that you provided" in the bottom of the page with something else in Arabic. I'm using Wordpress with Woocommerce plugin and divi theme builder.
this is the url of the page i'm trying to edit (https://blockchainarabi.com/checkout/)
There are 2 methods; using plugin and manually! Change a text on a woocommerce website using code is a manual method!
I'd suggest, use Google Fonts and text for your site. As there are numerous beautiful fonts that Google provides which improves user experience and helps you to boost user engagement.
Just follow the below-mentioned steps:
Steps:
Step 1: Find the fonts that you want to use on your website.
Step 2: Then, select the fonts by clicking on a plus sign (+) icon, You will see this in the top right section of every font family box.
Step 3: A Family Selected tab will appear on the bottom side, Just click it there and then click on customize and then, modify and select the different styles of fonts.
Step 4: Then, Go to Embed and copy the Standard field URL. You can see in the image.
enter image description here
Step 5: Next, in the process is to add the following code into functions.php file via FTP client.
function wpblog_add_google_fonts() {
wp_enqueue_style( ' wpblog_google_fonts ', ' https://fonts.googleapis.com/css...', false );}
add_action( 'wp_enqueue_scripts', 'wpblog_add_google_fonts' );
then save it.
See, it's that simple!
Note: Don’t forget to change the URL link with your own
I'm trying to work out how to edit the download button link that sits directly underneath the order title, in the order details section of the thank you page.
So if you make an order in Woocommerce, for a product that is downloadable, you get a "Thank you. Your order has been received" box, then under it, you get an "Order Details" box.
In that order details box, it shows each product ordered, and if that product is downloadable, it shows a small "Download: Product name" link under the product title.
I want to hook/filter into that download link, and edit it ( changing the text mainly, but also restyling it).
I've tried finding the action that adds it, but can't seem to work out where it's based, and then how to filter into it to change it's appearance. I did also try to add a function that include a different download link using woocommerce_order_item_meta_end, then hide the old link, but can't work out how to get the product download link URL either.
Any help would be great, thanks!
There doesn't seem to be any filters to do that so you'd need to copy the \templates\order\order-downloads.php template file into your child theme folder and make modifications to the following line in that file.
case 'download-file':
echo '' . esc_html( $download['download_name'] ) . '';
break;
I actually searched on the web about meta boxes but didnt find the thing I want since they were page and post specific . So I am actually searching for a thing(meta box or whatever) which will provide me a simple text field in the admin panel and when I enter the link of the youtube video and hit submit the video would appear in the HEADER of my blog . So which tool will let me to do the thing I described ?
It is actually "custom fields" what I meant here . For each post you can add a custom field and in the header you can use each's value via 'get_post_custom_values' function .
I need to remove the "more info" link from feeds. It appears that the link is added to the content in place of the break tag, but I see no option to disable this substitution for RSS feeds only. I am generating the feeds using a feed display in a view. Can anyone tell me how I can remove the "more info" link?
Thanks.
In vides it's possible to enable and disable a see more link. So most likely you can just turn it off. Take a look a the left column in the views UI.
You can try the following out:
First, I'm sure your in your view its Style: RSS Feed. Also make sure Row style: Node.
Besides the Row style: Node there is a Button (shaped like a circular gear). Click on it.
The following display types are available:
Use default RSS settings
Full Text
Title plus teaser
Title only
Choose option number (2)
Try to make a RSS-view.
(Sorry if I use wrong terminology as I use a Swedish translation of Drupal)
Then make a page and make the urlpath the exact same as for the feed (eg. aggregator/sources/10 for feed nr. 10)
This will replace the default list of rssposts and instead show your custom rss-view without the "show more" links.
This worked for me at least. Let me know if you need more info...
/Kristian