text "Permalink" displayed in page
-
I am having a problem where the word “Permalink” is displayed in the main collum of my home/ind page. When I inspect element I find the following reference code
(Permalink)
However I am unable to find where it originates in WordPress to delete it.
the site address is I am new to W/P and am not totally sure if this is the correct forum for asking this question. Any help is greatly appreciated. Thanks
-
sorry the code I referenced is < title=”Permanent Link” href=”http://scftunion.org/” rel=”bookmark”>Permalink
Also I am using the Atahualpa theme
Yes here is the html output;
<div id="post-2" class="post post-2 page type-page status-publish has-post-thumbnail hentry odd"> <a title="Permanent Link" rel="bookmark" href="http://scftunion.org/"> Permalink </a> <div class="post-bodycopy clearfix"></div> </div>Appears to me it comes from a plugin or a widget. Do you have a facebook widget?. Are you able to move it around (the problem permalink) by rearranging your widgets?
Yes to the Facebook Widget. I have not attempted to move it around, just looked so far for a way to remove it. I removed the Facebook widget and it still remained.
Actually a Facebook graphic and link, not widget.
Appears the permalink immediately precedes the facebook graphic. Can you post the php code from near the fb graphic code? Here if it is small, or on pastebin.com if you want to post the whole file. Then post the pastebin url here?
Martin, I am not familiar with Pastebin.com. and I am not sure which php file contains the code. I’ve manually looked at all the php files trying to find the aforementioned references and cannot find where it is coming from.
the reference for the FB link is found under pages/front page. it is the foremost reference as follows.
<img style=”margin-top: 0px; margin-bottom: 0px;” src=”http://scftunion.org/wp-content/uploads/2014/09/FB_FindUsOnFacebook-144.png” alt=”” width=”144″ height=”37″ align=”left” />
the entire page
<img style=”margin-top: 0px; margin-bottom: 0px;” src=”http://scftunion.org/wp-content/uploads/2014/09/FB_FindUsOnFacebook-144.png” alt=”” width=”144″ height=”37″ align=”left” /><iframe style=”border-width: 0px;” src=”https://www.google.com/calendar/embed?showTitle=0&showDate=0&showPrint=0&showCalendars=0&showTz=0&height=300&wkst=1&bgcolor=%23FFFFFF&src=06ecbnkblsag44ft14f2qi6hio%40group.calendar.google.com&color=%23691426&ctz=America%2FLos_Angeles” width=”370″ height=”300″ frameborder=”0″ scrolling=”no” align=”middle”></iframe>
<table>
<tbody>
<tr>
<td>WEINGARTEN RIGHTS: WHAT ARE THEY? If you find yourself being questioned by a supervisor and if you think that questioning will lead to disciplinary action against you, invoke your Weingarten rights.These rights were established by the United States Supreme Court in 1975. By claiming them, you are entitled to union representation and the questions must come to an end. If necessary, inform your supervisor that you are invoking your rights. At that point, you are entitled to union representation, and the interview must cease until a loyal union representative is at your side. Weingarten rights apply to both part-time and full-time faculty members.Below are your Weingarten rights:
“If this discussion could in any way lead to my being disciplined or terminated, or affect my personal working condition, I respectfully request that my union steward, representative, or officer be present at the meeting. Without representation, I choose not answer any questions.”
Fresno City College: Contact Sheila Martin if you have questions or believe you have a grievance.
Reedley College and North Centers: Contact Maria Ortiz if you have questions or believe you have a grievance.
Part-time Faculty: Please contact Sheila Martin or Maria Ortiz if you have questions or believe you have a grievance.</td>
</tr>
</tbody>
</table>In the theme php files search for the word ‘permalink’.
First maybe deactivate all plugins and see if the problem goes away
I searched for it and could not find it in the Atahualpa theme php files. Martin do you know which theme PHP file actually contains this code?
No it is a most unusual theme, What version is yours?
Also you could attempt to contact the theme author.
BytesForAll is the Author. Okay, thanks for your help. If you come up with anything, it is appreciated. Ill check to see if they have a forum. thanks again.
You are welcome, sorry I didn’t think earlier to mention you can probably hide it with css
.post-2 a {display: none;}The above code might hide every link in that column, like the facebook image-link.
This below code could is three option to make display all links except the permalink:
.post-2 a {display: none;} .post-2 .post-bodycopy a {display: inline;}or
.post-2 a {display: none;} .post-2 .post-bodycopy a {display: inline-block;}or
.post-2 a {display: none;} .post-2 .post-bodycopy a {display: block;}Good luck
Found it under themes, bfa_post_parts.php was able to delete Permalink reference and whala! thanks for your help.
The topic ‘text "Permalink" displayed in page’ is closed to new replies.