WordPress embed link doesn't react when clicked - wordpress

enter image description here
Here is the website with the problem as the title.
http://gophilippines.media/itcamp02/
When I try to click the WordPress embed link card, it doesn't do anything.
Does anyone know what's wrong and perhaps some idea to fix?
I also disabled all the plugins yet the link doesn't react...

The element of the link contains an attribute target="_top". This attribute will try to open the linked document in the full body of the window (See this for more info).
You can remove the attribute or change it to another that does the work for you.

Related

Elementor change section image on button hover on column

I am new to elemetor and just wanted to explore the plugin. I have seen the website of Hongkong University and there is a part there where if a user hovers over the text, the background image would change. The change depends on the text being hovered. I wanted to recreate this under elementor but can't figure how.
I tried adding a custom id to the section and button (via elementor), then adding custom CSS codes in WordPress. Unfortunately, I was unsuccessful. If this is not possible using elementor, may I know if there is a plugin that has the same function? Thank you.
I have checked the website you have mentioned above. You can make it using Elementor and some custom coding. Please check this video tutorial which will help you to understand how you can make the same as per your requirement. You need to just change it as background image and hover on text selector.
You can also check this tutorial to get another idea. Code snippets are also added there

Pop-up text on image click WordPress

I am designing a wordpress site for a friend. He wants the bio text to appear after clicking on necessary image. I noticed this is straight forward with Elementor Pro. I want to keep things free for him at the mo.
I am running the Astra theme with basic Elementor. I also know how to code so if you think this is a custom css job then let me know the work around. (I'm brand new to WP)
Many thanks
Try adding an onclick event to the image and write some java script to add text where you want or may be enable a hidden textarea ??
You can check this link below for reference
How do I add a .click() event to an image?

wordpress theme - links (relative or hardcoded)

I am using a wordpress theme and am confused about links to other pages.
there are places where I can add a link to an existing button but I am not sure whether the link should be hardcoded or not.
e.g.
www.mysite/wordpress/?page=123
or
?page=123
Also if I have to hardcode it, should I be using https://??
This is not HTML, its like a textbox where you can add a link for a button, I guess the theme provides it.
Here is an image which shows how you can add a link to a button, it askes for a link, I would want to link to my contact page, what should i enter here?
Apologies this is all new to me.
As i know you can hardcode it. Like in Title
I use this code for
<?php the_title();?><?php the_permalink();?>
it will link to the page according to the title of the page/posts.
hope this helps

Adding a link from an image in wordpress

This seems to be more difficult than it should be.
All I would like to be able to do is add a link from an image on my wordpress site to an external website.
Using the normal media library tools this doesn't seem to be possible so I got the plugin WP Gallery Custom Links
However, even though I added the external link to the Gallery Link URL it still doesn't link.
Is there a more straightforward way to embed a link into an image?
Here is a screenshot of the image editing page:
If you are trying to make an Image clickable and bring you to an external site, click the image, click Edit, under Display settings select link to, custom url, and there you go.
Another way is, when you are adding an image to your site from your Media Library within Wordpress, there is an option "Link to" under Attachment Display Settings.

Wordpress Text Widget Links

I am adding text links to a wordpress text widget that goes in the sidebar of my site.
I am adding the example link here wrapped in a "a href":
Instagram
but when the link is clicked, it opens a url that contains my site's url in front of the linked url. For example:
http://mysiteurl.com/www.instagram.com/
I can't figure out why this is happening as this is usually the most simple adjustment for a site.
Thank you,
Are you sure "http://" is in your href ?
It happends when your href="www.instagram.com"
Good : href="http://www.instagram.com"
You are linking to "instagram.com" rather than http://instagram.com.
Your browser needs a protocol (http://) in order to know what to do with the link. If there is no protocol it assumes the link is local to the site you're on, so navigates you there.
If you include the protocol, your browser will know it is a separate entity and navigate to the correct place.
The full link should look like:
Instagram
What was causing the issue was that “ quotes were used instead of ". So the correct link is
Instagram
instead of
Instagram

Resources