Blue3agle
Forum Replies Created
-
Forum: Plugins
In reply to: [Request Form for Zendesk] Get field settings from field IDActually, downloading a list of fields from Zendesk into the configuration form should be even better as it would do away with us having to get the field id to begin with. ??
Forum: Plugins
In reply to: [qTranslate X] qtranslate-mode=raw@gunu
I am sorry, but I do not know what you mean. I think you may confuse GET variable https://example.com/feed?qtranslatemode=raw with the “Editor raw mode” preference setting.The issue is that when you use https://example.com/feed?qtranslatemode=raw then it does not pass it through the filter that adds the “Not available message” (i.e. “Sorry, this entry is only available in %LANG:, : and %.”) to the text.
Of course this would not make the output ‘raw’ any more since it is at least partially processed, but it is desirable that this is detected and filtered.
I would assume that you could use the same filter that adds this text in the normal output to add the text to the ‘raw’ (now semi-raw) output.
Forum: Reviews
In reply to: [Feed Pull] doesnt workCould you please be less specific about what does not work? I have been able to make it work, and so have several others, and with the level of detail you provide it rather suggests that your post should be “I couldn’t make it work”.
Forum: Plugins
In reply to: [Feed Pull] multilanguage contentIf you are using qtranslate-x they have developed a solution for this in beta.
https://github.com/qTranslate-Team/qtranslate-x/issues/133#issuecomment-95374795
Forum: Plugins
In reply to: [qTranslate X] Special tag to get "raw" (untranslated) textForum: Plugins
In reply to: [qTranslate X] Special tag to get "raw" (untranslated) textYes, I would like to get unfiltered text from the special tag.
If I go to https://example.com/no/feed/ I would get content like
Title: Dette er en fin post
Content: Denne fine posten er p? norskIf I go to https://example.com/en/feed I would get content like
Title: This is a nice post
Content: This nice post is in EnglishIf I go to https://example.com/raw/feed I would get content like
Title: [:no]Dette er en fin post[:en]This is a nice post[:]
Content: [:no]Denne fine posten er p? norsk[:en]This nice post is in English[:]This will allow me to import the newsfeed https://example.com/raw/feed to a site that uses qTranslate and just plug it in to a new post and qTranslate will then show the right content in either Norwegian or English.
Forum: Plugins
In reply to: [qTranslate X] Special tag to get "raw" (untranslated) textHello Gunu.
I have now set up a test site to test the beta code, but I do not see how the Editor Mode should help accomplish what I wish to do.
Please re-read the support request as I do believe you may have misunderstood the issue.
At present I have two languages used for my sites, and I use pre-path mode. This means that I get two distinct news feeds (https://example.com/no/feed which gets all the norwegian content and https://example.com/en/feed which gets all the english content). However when I want to syndicate all news from the sites onto the main site I want to have a news feed with the language codes intact so that the main sites news feed shows either Norwegian or English content.
I therefore need q-translate to have a “special” language “raw” that does not filter out the content when providing the news feed.
Forum: Plugins
In reply to: [Nooz] no space between the date and the name of the press release.As a workaround you can edit plugins\nooz\inc\MightyDev\nooz.php and change the line
$html .= '<a href="' . $link . '" target="' . ( $target ? $target : $link_target ) . '">' . get_the_title( $my_post->ID ) . '</a></li>';
to
$html .= ' - <a href="' . $link . '" target="' . ( $target ? $target : $link_target ) . '">' . get_the_title( $my_post->ID ) . '</a></li>';
This will add a hyphen between the date and the link.
You can now also add class=”nooz_itme” and class=”nooz_link” to this line and the one above and style the date and link in your css with time.nooz_time{} and a.nooz_link{}I hope this helps.